Structureswift 6.0.3Foundation
Iterator
struct Iterator
struct Iterator
import Foundation
class NSArray
override init()
convenience init(array: NSArray)
convenience init(array: [Any])
convenience init(array: [Any], copyItems: Bool)
required convenience init(arrayLiteral elements: Any...)
required convenience init?(coder aDecoder: NSCoder)
convenience init(contentsOf url: URL, error: ()) throws
convenience init(object anObject: Any)
convenience init(objects elements: AnyObject...)
required init(objects: UnsafePointer<AnyObject>?, count: Int)
convenience init(objects: UnsafePointer<AnyObject>, count: Int)
static var supportsSecureCoding: Bool { get }
var count: Int { get }
var customMirror: Mirror { get }
override var description: String { get }
var firstObject: Any? { get }
override var hash: Int { get }
var lastObject: Any? { get }
var sortedArrayHint: Data { get }
subscript(idx: Int) -> Any { get }
func adding(_ anObject: Any) -> [Any]
func addingObjects(from otherArray: [Any]) -> [Any]
func componentsJoined(by separator: String) -> String
func contains(_ anObject: Any) -> Bool
override func copy() -> Any
func copy(with zone: NSZone? = nil) -> Any
func description(withLocale locale: Locale?) -> String
func description(withLocale locale: Locale?, indent level: Int) -> String
func encode(with aCoder: NSCoder)
func enumerateObjects(_ block: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
func enumerateObjects(at s: IndexSet, options opts: NSEnumerationOptions = [], using block: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
func enumerateObjects(options opts: NSEnumerationOptions = [], using block: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
func filtered(using predicate: NSPredicate) -> [Any]
func firstObjectCommon(with otherArray: [Any]) -> Any?
func index(of anObject: Any) -> Int
func index(of anObject: Any, in range: NSRange) -> Int
func index(of obj: Any, inSortedRange r: NSRange, options opts: NSBinarySearchingOptions = [], usingComparator cmp: (Any, Any) -> ComparisonResult) -> Int
func indexOfObject(at s: IndexSet, options opts: NSEnumerationOptions = [], passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
func indexOfObject(options opts: NSEnumerationOptions = [], passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
func indexOfObject(passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> Int
func indexOfObjectIdentical(to anObject: Any) -> Int
func indexOfObjectIdentical(to anObject: Any, in range: NSRange) -> Int
func indexesOfObjects(at s: IndexSet, options opts: NSEnumerationOptions = [], passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
func indexesOfObjects(options opts: NSEnumerationOptions = [], passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
func indexesOfObjects(passingTest predicate: (Any, Int, UnsafeMutablePointer<ObjCBool>) -> Bool) -> IndexSet
override func isEqual(_ value: Any?) -> Bool
func isEqual(to otherArray: [Any]) -> Bool
final func makeIterator() -> NSArray.Iterator
override func mutableCopy() -> Any
func mutableCopy(with zone: NSZone? = nil) -> Any
func object(at index: Int) -> Any
func objectEnumerator() -> NSEnumerator
func objects(at indexes: IndexSet) -> [Any]
func pathsMatchingExtensions(_ filterTypes: [String]) -> [String]
func reverseObjectEnumerator() -> NSEnumerator
func sortedArray(_ comparator: (Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?) -> [Any]
func sortedArray(_ comparator: (Any, Any, UnsafeMutableRawPointer?) -> Int, context: UnsafeMutableRawPointer?, hint: Data?) -> [Any]
func sortedArray(comparator cmptr: (Any, Any) -> ComparisonResult) -> [Any]
func sortedArray(options opts: NSSortOptions = [], usingComparator cmptr: (Any, Any) -> ComparisonResult) -> [Any]
func sortedArray(using sortDescriptors: [NSSortDescriptor]) -> [Any]
func subarray(with range: NSRange) -> [Any]
func write(to url: URL) throws
convenience init?(contentsOf url: URL)
convenience init?(contentsOfFile path: String)
@discardableResult func write(to url: URL, atomically: Bool) -> Bool
@discardableResult func write(toFile path: String, atomically useAuxiliaryFile: Bool) -> Bool
protocol IteratorProtocol<Element>
A type that supplies the values of a sequence one at a time.
mutating func next() -> Any?