about summary refs log tree commit diff stats
path: root/cpp/032array
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-17 20:36:25 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-17 20:36:25 -0700
commit0acfaaef6a402d332f2c1e83424e9d4d0ada7455 (patch)
tree4c2912b33a27bda361d2b4227954e84801eb366b /cpp/032array
parent7f931ef0f27f2815ca435bd63f3aa77329c2f096 (diff)
downloadmu-0acfaaef6a402d332f2c1e83424e9d4d0ada7455.tar.gz
1088 - start porting the 'buffer' type
Diffstat (limited to 'cpp/032array')
-rw-r--r--cpp/032array4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/032array b/cpp/032array
index fbb5ed7b..a4f5ecba 100644
--- a/cpp/032array
+++ b/cpp/032array
@@ -1,4 +1,8 @@
 //: Arrays contain a variable number of elements of the same type.
+//:
+//: You can create arrays of containers, but containers can only contain
+//: elements of a fixed size, so you can't create containers containing arrays.
+//: Create containers containing addresses to arrays instead.
 
 :(scenario copy_array)
 # Arrays can be copied around with a single instruction just like integers,