diff --git a/docs/optics/iso.html b/docs/optics/iso.html index 318fad62c..82be73f83 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@a6d795f +// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@c6914bc GenIso.unit[Bar.type] -// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@2808610e +// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@663defcc

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 318fad62c..82be73f83 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@a6d795f +// res7: Iso[Foo, Unit] = monocle.PIso$$anon$3@c6914bc GenIso.unit[Bar.type] -// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@2808610e +// res8: Iso[Bar.type, Unit] = monocle.PIso$$anon$3@663defcc

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 33b39ba7f..36ceb72ea 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@2443fbb2 +// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@6720eb4f val b = GenLens[A](_.b) -// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@bc11678 +// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@c9bc917 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 33b39ba7f..36ceb72ea 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@2443fbb2 +// c: Lens[B, Int] = repl.MdocSession$MdocApp$$anon$7@6720eb4f val b = GenLens[A](_.b) -// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@bc11678 +// b: Lens[A, Option[B]] = repl.MdocSession$MdocApp$$anon$8@c9bc917 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 cb27a3adf..742309687 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@2b75dbfa
+// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@4835ec62
 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@10b67518
+// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@4d89cd54
 
 filterEven.modify(_.toUpperCase)(m)
 // res7: Map[Int, String] = Map(
diff --git a/docs/optics/traversal/index.html b/docs/optics/traversal/index.html
index cb27a3adf..742309687 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@2b75dbfa
+// eachL: Traversal[List[Int], Int] = monocle.PTraversal$$anon$2@4835ec62
 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@10b67518
+// filterEven: Traversal[Map[Int, String], String] = repl.MdocSession$MdocApp$$anon$1@4d89cd54
 
 filterEven.modify(_.toUpperCase)(m)
 // res7: Map[Int, String] = Map(