From f542c948d5f37b89a7b1bfec850d5b5d29ef55b6 Mon Sep 17 00:00:00 2001 From: Docusaurus bot Date: Wed, 12 Jul 2023 21:35:19 +0000 Subject: [PATCH] Deploy website Deploy website version based on f44732cb6c1d69f118114eab140473d1dd6f7432 --- docs/optics/iso.html | 4 ++-- docs/optics/iso/index.html | 4 ++-- docs/optics/lens.html | 4 ++-- docs/optics/lens/index.html | 4 ++-- docs/optics/traversal.html | 4 ++-- docs/optics/traversal/index.html | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/optics/iso.html b/docs/optics/iso.html index e356d1ca7..0b5629189 100644 --- a/docs/optics/iso.html +++ b/docs/optics/iso.html @@ -112,9 +112,9 @@

GenIso.unit[Foo] -// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@5b3d5dde +// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@3fb31847 GenIso.unit[Bar.type] -// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@78f72a05 +// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@68ddb7bf

Finally, GenIso.fields is a whitebox macro which generalise GenIso.apply to all case classes:

GenIso.fields[Person].get(Person("John", 42))
diff --git a/docs/optics/iso/index.html b/docs/optics/iso/index.html
index e356d1ca7..0b5629189 100644
--- a/docs/optics/iso/index.html
+++ b/docs/optics/iso/index.html
@@ -112,9 +112,9 @@ 

GenIso.unit[Foo] -// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@5b3d5dde +// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@3fb31847 GenIso.unit[Bar.type] -// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@78f72a05 +// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@68ddb7bf

Finally, GenIso.fields is a whitebox macro which generalise GenIso.apply to all case classes:

GenIso.fields[Person].get(Person("John", 42))
diff --git a/docs/optics/lens.html b/docs/optics/lens.html
index dab955427..aa7464a68 100644
--- a/docs/optics/lens.html
+++ b/docs/optics/lens.html
@@ -149,9 +149,9 @@ 

case class A(b: Option[B]) val c = GenLens[B](_.c) -// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@622f66d6 +// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@7fa119fe val b = GenLens[A](_.b) -// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@6d46e9cd +// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@37db912d b.some.andThen(c).getOption(A(Some(B(1)))) // res11: Option[Int] = Some(value = 1) diff --git a/docs/optics/lens/index.html b/docs/optics/lens/index.html index dab955427..aa7464a68 100644 --- a/docs/optics/lens/index.html +++ b/docs/optics/lens/index.html @@ -149,9 +149,9 @@

case class A(b: Option[B]) val c = GenLens[B](_.c) -// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@622f66d6 +// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@7fa119fe val b = GenLens[A](_.b) -// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@6d46e9cd +// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@37db912d b.some.andThen(c).getOption(A(Some(B(1)))) // res11: Option[Int] = Some(value = 1) diff --git a/docs/optics/traversal.html b/docs/optics/traversal.html index efefa4cf8..a7a090c7f 100644 --- a/docs/optics/traversal.html +++ b/docs/optics/traversal.html @@ -64,7 +64,7 @@ val xs = List(1,2,3,4,5)

val eachL = Traversal.fromTraverse[List, Int]
-// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@705f3c94
+// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@3c543f50
 eachL.replace(0)(xs)
 // res0: List[Int] = List(0, 0, 0, 0, 0)
 eachL.modify(_ + 1)(xs)
@@ -106,7 +106,7 @@
 val m = Map(1 -> "one", 2 -> "two", 3 -> "three", 4 -> "Four")
 
val filterEven = filterKey[Int, String](_ % 2 == 0)
-// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@39848470
+// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@d524982
 
 filterEven.modify(_.toUpperCase)(m)
 // res7: Map[Int, String] = Map(
diff --git a/docs/optics/traversal/index.html b/docs/optics/traversal/index.html
index efefa4cf8..a7a090c7f 100644
--- a/docs/optics/traversal/index.html
+++ b/docs/optics/traversal/index.html
@@ -64,7 +64,7 @@
 val xs = List(1,2,3,4,5)
 
val eachL = Traversal.fromTraverse[List, Int]
-// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@705f3c94
+// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@3c543f50
 eachL.replace(0)(xs)
 // res0: List[Int] = List(0, 0, 0, 0, 0)
 eachL.modify(_ + 1)(xs)
@@ -106,7 +106,7 @@
 val m = Map(1 -> "one", 2 -> "two", 3 -> "three", 4 -> "Four")
 
val filterEven = filterKey[Int, String](_ % 2 == 0)
-// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@39848470
+// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@d524982
 
 filterEven.modify(_.toUpperCase)(m)
 // res7: Map[Int, String] = Map(