-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
60 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
nimTitle channels channels.html module threading/channels 0 | ||
nim Chan channels.html#Chan object Chan 243 | ||
nim `=destroy` channels.html#=destroy,Chan[T] proc `=destroy`[T](c: Chan[T]) 247 | ||
nim `=copy` channels.html#=copy,Chan[T],Chan[T] proc `=copy`[T](dest: var Chan[T]; src: Chan[T]) 263 | ||
nim trySend channels.html#trySend,Chan[T],sinkIsolated[T] proc trySend[T](c: Chan[T]; src: sink Isolated[T]): bool 272 | ||
nim trySend channels.html#trySend.t,Chan[T],T template trySend[T](c: Chan[T]; src: T): bool 291 | ||
nim tryRecv channels.html#tryRecv,Chan[T],T proc tryRecv[T](c: Chan[T]; dst: var T): bool 295 | ||
nim send channels.html#send,Chan[T],sinkIsolated[T] proc send[T](c: Chan[T]; src: sink Isolated[T]) 308 | ||
nim send channels.html#send.t,Chan[T],T template send[T](c: Chan[T]; src: T) 322 | ||
nim recv channels.html#recv,Chan[T],T proc recv[T](c: Chan[T]; dst: var T) 326 | ||
nim recv channels.html#recv,Chan[T] proc recv[T](c: Chan[T]): T 335 | ||
nim recvIso channels.html#recvIso,Chan[T] proc recvIso[T](c: Chan[T]): Isolated[T] 340 | ||
nim peek channels.html#peek,Chan[T] proc peek[T](c: Chan[T]): int 347 | ||
nim newChan channels.html#newChan,Positive proc newChan[T](elements: Positive = 30): Chan[T] 351 | ||
nimgrp recv channels.html#recv-procs-all proc 326 | ||
nim Chan channels.html#Chan object Chan 261 | ||
nim `=destroy` channels.html#=destroy,Chan[T] proc `=destroy`[T](c: Chan[T]) 265 | ||
nim `=copy` channels.html#=copy,Chan[T],Chan[T] proc `=copy`[T](dest: var Chan[T]; src: Chan[T]) 281 | ||
nim trySend channels.html#trySend,Chan[T],sinkIsolated[T] proc trySend[T](c: Chan[T]; src: sink Isolated[T]): bool 290 | ||
nim trySend channels.html#trySend.t,Chan[T],T template trySend[T](c: Chan[T]; src: T): bool 309 | ||
nim tryRecv channels.html#tryRecv,Chan[T],T proc tryRecv[T](c: Chan[T]; dst: var T): bool 313 | ||
nim send channels.html#send,Chan[T],sinkIsolated[T] proc send[T](c: Chan[T]; src: sink Isolated[T]) 326 | ||
nim send channels.html#send.t,Chan[T],T template send[T](c: Chan[T]; src: T) 340 | ||
nim recv channels.html#recv,Chan[T],T proc recv[T](c: Chan[T]; dst: var T) 344 | ||
nim recv channels.html#recv,Chan[T] proc recv[T](c: Chan[T]): T 353 | ||
nim recvIso channels.html#recvIso,Chan[T] proc recvIso[T](c: Chan[T]): Isolated[T] 358 | ||
nim peek channels.html#peek,Chan[T] proc peek[T](c: Chan[T]): int 365 | ||
nim newChan channels.html#newChan,Positive proc newChan[T](elements: Positive = 30): Chan[T] 369 | ||
nimgrp recv channels.html#recv-procs-all proc 344 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.