diff options
-rw-r--r-- | lib/std/isolation.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/std/isolation.nim b/lib/std/isolation.nim index 70395d6d4..94abef807 100644 --- a/lib/std/isolation.nim +++ b/lib/std/isolation.nim @@ -10,6 +10,9 @@ ## This module implements the `Isolated[T]` type for ## safe construction of isolated subgraphs that can be ## passed efficiently to different channels and threads. +## +## .. warning:: This module is experimental and its interface may change. +## type Isolated*[T] = object ## Isolated data can only be moved, not copied. |