summary refs log tree commit diff stats
path: root/lib/pure/collections
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-11-05 12:16:49 +0100
committerAraq <rumpf_a@web.de>2011-11-05 12:16:49 +0100
commitdc08a033d910aea19fde0f59c9d1a5e70d7efc15 (patch)
tree1bc7bae9bd75af8e0cc86d9f71ce6650638ba816 /lib/pure/collections
parent25fbad98bcd61b9344d5cbf313da6788f1567373 (diff)
downloadNim-dc08a033d910aea19fde0f59c9d1a5e70d7efc15.tar.gz
memfiles now uses winlean; changed the interface to raise EOS
Diffstat (limited to 'lib/pure/collections')
-rw-r--r--lib/pure/collections/sequtils.nim3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim
index 59d0d2658..b7a57ac0c 100644
--- a/lib/pure/collections/sequtils.nim
+++ b/lib/pure/collections/sequtils.nim
@@ -11,6 +11,9 @@
 ##
 ## This module implements operations for the built-in `seq`:idx: type
 ## which were inspired by functional programming languages.
+##
+## **Note**: This interface will change as soon as the compiler supports
+## closures and proper coroutines.
 
 proc concat*[T](seqs: openarray[seq[T]]): seq[T] =
   ## Takes several sequences' items and returns them inside of one sequence.