Interface RCollection<T>

    • Method Detail

      • retainAll

        default boolean retainAll​(@NotNull
                                  @NotNull java.util.Collection<?> c)
        Specified by:
        retainAll in interface java.util.Collection<T>
      • containsAll

        default boolean containsAll​(@NotNull
                                    @NotNull java.util.Collection<?> c)
        Specified by:
        containsAll in interface java.util.Collection<T>
      • addAll

        default boolean addAll​(@NotNull
                               @NotNull java.util.Collection<? extends T> c)
        Specified by:
        addAll in interface java.util.Collection<T>
      • removeAll

        default boolean removeAll​(@NotNull
                                  @NotNull java.util.Collection<?> c)
        Specified by:
        removeAll in interface java.util.Collection<T>
      • clear

        default void clear()
        Specified by:
        clear in interface java.util.Collection<T>
      • add0

        default void add0​(T val)
      • remove0

        default void remove0​(T val)
      • of

        static <E> RCollection<E> of​(java.util.Collection<E> src)