New build of AfterGRASP is up for download:

http://www.aftergrasp.com/download/

agsetup_20120424.exe

----------------------------------------------------------------------------
Tue, 24 April 2012

Arrays now support a add new item to beginning or end of array using
[-] for before beginning
[+] for after end

  test = array()
  test[+] = a
  test[+] = b
  test[+] = c
  test[+] = d
  test[-] = z
  test[-] = y

Same as:

  test[0] = a
  test[1] = b
  test[2] = c
  test[3] = d
  test[-1] = z
  test[-2] = y

This is very useful for adding items to a array. Previously the standard
method was to use the array size like this:

  test = array()
  test[test->size] = a
  test[test->size] = b
  test[test->size] = c
  test[test->size] = d

Much simpler and more robust to use [+] instead.


----------------------------------------------------------------------------

-- 
You received this message because you are subscribed to the Google Groups 
"aftergrasp" group.
To post to this group, send email to aftergrasp@googlegroups.com.
To unsubscribe from this group, send email to 
aftergrasp+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/aftergrasp?hl=en.

Reply via email to