Skip to content

Instantly share code, notes, and snippets.

@samaaron
Created January 16, 2009 17:33
Show Gist options
  • Select an option

  • Save samaaron/48023 to your computer and use it in GitHub Desktop.

Select an option

Save samaaron/48023 to your computer and use it in GitHub Desktop.
public static List<Object> getList(Object on) {
return ((IokeList)(IokeObject.data(on))).getList();
}
public static List<Object> getList(Object on, IokeObject message, IokeObject context) {
Object onAsList = IokeList.convertTo(on, true, message, context);
return onAsList.getList();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment