Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. //=================================================================
  2. public static bool eina_iterator_example()
  3. {
  4. var a = new Eina.Array<string>();
  5. a.push("eins");
  6. a.push("zwei");
  7. a.push("drei");
  8. var iter = a.iterator_new();
  9. string e = null;
  10. while(iter.get_next(out e))
  11. {
  12. debug(@"$e");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement