Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
support for sequences such as
sequence Foo
{ int x, String y, Bar b };
foo = new Foo(12, "hello", new Bar());
assert foo[0] == 12;
assert foo.x == 12;
foo.y = "hey";
they are kinda like simple classes where the data is stored as a tuple but they can have optional type restrictions and also possible named values.