Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. ListX<Integer> list = ListX.of(1,2,3);
  2. ListX.range(0,10);
  3. ListX.fill(10,"hello");
  4. ListX.listX(ReactiveSeq.of(1,2,3));
  5.  
  6. LinkedListX<Integer> l = LinkedListX.of(1,2,3);
  7. LinkedListX<Integer> lv = VavrListX.of(1,2,3);
  8. LinkedListX<Integer> ls = ScalaListX.of(1,2,3);
  9. LinkedListX<Integer> lc = ClojureListX.of(1,2,3);
  10. LinkedListX<Integer> lc = DexxListX.of(1,2,3);
  11.  
  12. VectorX<Integer> v = VectorX.of(1,2,3);
  13. VectorX<Integer> vv = VavrVectorX.of(1,2,3);
  14. VectorX<Integer> vv = ScalaVectorX.of(1,2,3);
  15. VectorX<Integer> vv = ClojureVectorX.of(1,2,3);
  16. VectorX<Integer> vv = DexxVectorX.of(1,2,3);
  17.  
  18. IndexedSequenceX<Integer> is = v;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement