Skip to content

Commit 0b24e0c

Browse files
committed
deploy: fdc16e4
1 parent 5eae6a7 commit 0b24e0c

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

guide.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -718,10 +718,10 @@ val program =
718718
// program: Stream[[x]IO[x], Unit] = Stream(..)
719719

720720
program.compile.drain.unsafeRunSync()
721-
// 00:56:38.512646258
722-
// 00:56:39.512558010
723-
// 00:56:40.512592978
724-
// 00:56:41.512569766
721+
// 12:19:32.631691618
722+
// 12:19:33.631678810
723+
// 12:19:34.631595960
724+
// 12:19:35.631658364
725725
```
726726

727727
Let's take this line by line now, so we can understand what's going on.
@@ -763,10 +763,10 @@ val program1 =
763763
// program1: Stream[[x]IO[x], Unit] = Stream(..)
764764

765765
program1.compile.drain.unsafeRunSync()
766-
// 00:56:43.514996558
767-
// 00:56:44.515119572
768-
// 00:56:45.515129117
769-
// 00:56:46.515058563
766+
// 12:19:37.634041570
767+
// 12:19:38.634162212
768+
// 12:19:39.634106075
769+
// 12:19:40.634113967
770770
```
771771

772772
### Talking to the external world
@@ -799,7 +799,7 @@ The way you bring synchronous effects into your effect type may differ. `Sync.de
799799
import cats.effect.Sync
800800

801801
val T = Sync[IO]
802-
// T: cats.effect.kernel.Async[IO] = cats.effect.IO$$anon$5@2403776e
802+
// T: cats.effect.kernel.Async[IO] = cats.effect.IO$$anon$5@16f7b68f
803803
val s2 = Stream.exec(T.delay { destroyUniverse() }) ++ Stream("...moving on")
804804
// s2: Stream[[x]IO[x], String] = Stream(..)
805805
s2.compile.toVector.unsafeRunSync()
@@ -933,15 +933,15 @@ stream.toUnicastPublisher
933933
// source = Bind(
934934
// source = Eval(
935935
// fa = Delay(
936-
// thunk = cats.effect.IO$$$Lambda$11359/0x00007fd773ec7aa0@33a4bd48,
936+
// thunk = cats.effect.IO$$$Lambda$11358/0x00007f6b47edf2a0@3d55e842,
937937
// event = cats.effect.tracing.TracingEvent$StackTrace
938938
// )
939939
// ),
940-
// fs = cats.effect.std.Supervisor$$$Lambda$12252/0x00007fd7740c22e0@3797b199
940+
// fs = cats.effect.std.Supervisor$$$Lambda$12252/0x00007f6b480dd848@5202270e
941941
// ),
942-
// fs = cats.effect.std.Dispatcher$$$Lambda$12253/0x00007fd7740c26b0@55c32ab7
942+
// fs = cats.effect.std.Dispatcher$$$Lambda$12253/0x00007f6b480ddc18@ae252ae
943943
// ),
944-
// fs = cats.effect.kernel.Resource$$Lambda$12198/0x00007fd7740aea70@1c7e6ae6
944+
// fs = cats.effect.kernel.Resource$$Lambda$12198/0x00007f6b480c5f88@652c4be6
945945
// )
946946
```
947947

@@ -954,25 +954,25 @@ val publisher: Resource[IO, StreamUnicastPublisher[IO, Int]] = Stream(1, 2, 3).c
954954
// source = Bind(
955955
// source = Eval(
956956
// fa = Delay(
957-
// thunk = cats.effect.IO$$$Lambda$11359/0x00007fd773ec7aa0@aa6dadc,
957+
// thunk = cats.effect.IO$$$Lambda$11358/0x00007f6b47edf2a0@77a9b8f9,
958958
// event = cats.effect.tracing.TracingEvent$StackTrace
959959
// )
960960
// ),
961-
// fs = cats.effect.std.Supervisor$$$Lambda$12252/0x00007fd7740c22e0@b7a968
961+
// fs = cats.effect.std.Supervisor$$$Lambda$12252/0x00007f6b480dd848@3450db55
962962
// ),
963-
// fs = cats.effect.std.Dispatcher$$$Lambda$12253/0x00007fd7740c26b0@4c6dbd5b
963+
// fs = cats.effect.std.Dispatcher$$$Lambda$12253/0x00007f6b480ddc18@2cbf9853
964964
// ),
965-
// fs = cats.effect.kernel.Resource$$Lambda$12198/0x00007fd7740aea70@23abd76a
965+
// fs = cats.effect.kernel.Resource$$Lambda$12198/0x00007f6b480c5f88@2b4b9559
966966
// )
967967
publisher.use { p =>
968968
p.toStream[IO].compile.toList
969969
}
970970
// res59: IO[List[Int]] = FlatMap(
971971
// ioe = Delay(
972-
// thunk = cats.effect.IO$$$Lambda$11359/0x00007fd773ec7aa0@aa6dadc,
972+
// thunk = cats.effect.IO$$$Lambda$11358/0x00007f6b47edf2a0@77a9b8f9,
973973
// event = cats.effect.tracing.TracingEvent$StackTrace
974974
// ),
975-
// f = cats.effect.kernel.Resource$$Lambda$12255/0x00007fd7740c3b10@37a1cd09,
975+
// f = cats.effect.kernel.Resource$$Lambda$12255/0x00007f6b480df078@2708077,
976976
// event = cats.effect.tracing.TracingEvent$StackTrace
977977
// )
978978
```

0 commit comments

Comments
 (0)