Skip to content
This repository has been archived by the owner on Mar 29, 2018. It is now read-only.
pNre edited this page Jun 14, 2014 · 20 revisions

Contents

#Properties

length

Length of self.

Example

"Hello".length
// → 5

#Instance methods

at

  • at (indexes: Int...) -> String[]

Returns an array of characters at indexes in self.

Example

let str = "This is a string"
str.at(2, 3, 5)
// → ["i", "s", "i"]

#Class methods #Operators

Clone this wiki locally