Interface ISimpleList<T>

    • Field Detail

      • empty

        static final ISimpleList<java.lang.Object> empty
    • Method Detail

      • size

        int size()
      • get

        T get​(int n)
      • toList

        default java.util.List<T> toList()
      • create

        @SafeVarargs
        static <T> ISimpleList<T> create​(T... ts)
      • fromList

        static <T> ISimpleList<T> fromList​(java.util.List<T> ts)