Uses of Class
squidpony.squidmath.EnumOrderedSet

Packages that use EnumOrderedSet 
Package Description
squidpony
Utilities that don't fit elsewhere in SquidLib; mostly text manipulation, compression, and helper code.
  • Uses of EnumOrderedSet in squidpony

    Methods in squidpony that return EnumOrderedSet 
    Modifier and Type Method Description
    static <T extends Enum<T>>
    EnumOrderedSet<T>
    Maker.makeEOS()
    Makes an empty EnumOrderedSet (EOS); needs item type to be specified in order to work.
    static <T extends Enum<?>>
    EnumOrderedSet<T>
    Maker.makeEOS​(T initial, T... elements)
    Makes a EnumOrderedSet (OS) of the enum type T given at least one T element followed by an array or vararg of any number of additional T elements.