changeset 357:e35fc1f4df0b

Docs
author Chris Cannam
date Tue, 25 Jun 2013 09:37:53 +0100
parents 5fe32d3c2dd7
children 0fae77db7b34
files may/vector.yeti
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/may/vector.yeti	Tue Jun 25 09:36:22 2013 +0100
+++ b/may/vector.yeti	Tue Jun 25 09:37:53 2013 +0100
@@ -1,12 +1,14 @@
 
+/**
+ * Vectors. A May vector is a typesafe, immutable wrapper around a Java
+ * primitive array of doubles.
+ */
 module may.vector;
 
 load may.vector.type;
 
 import java.util: Arrays;
 
-//!!! This is supposed to be 100% immutable and without copying when duplicating for read only
-
 /// Return a vector of n zeros.
 zeros n =
     new double[n];