Array

struct Array<Element> : CollectionType, MutableCollectionType, _DestructorSafeContainer

Common array extensions used in this project

  • Returns an array of arrays, where each one is a permutation

    Declaration

    Swift

    public var permutations: [[Element]]
  • Checks if array is sorted

    Declaration

    Swift

    func isSorted(isOrderedBefore: (Element, Element) -> Bool) -> Bool