Swift Language Reference Flashcards
Learn all the Language Reference Topics of SwiftLang.
What is Lexical Structure?
Describes what sequence of characters form valid tokens of the language.
What is a token?
Consists of an identifier, keyword, punctuation, literal, or operator.
What is a valid token?
Form the lowest-level building blocks of the language and are used to describe the rest of the language
How are tokens are generated?
Generated from the characters of a Swift source file by considering the longest possible substring from the input text, within the constraints of the grammar. This behavior is referred to as longest match or maximal munch.
What is an Identifier?
Uppercase or lowercase letter A through Z, an underscore (_), a noncombining alphanumeric Unicode character in the Basic Multilingual Plane, or a character outside the Basic Multilingual Plane that isn’t in a Private Use Area. After the first character, digits and combining Unicode characters are also allowed.
How to use a reserved word as an identifier?
put a backtick (`) before and after it. For example, class is not a valid identifier, but `class` is valid. The backticks aren’t considered part of the identifier; `x` and x have the same meaning.
how to refer to parameters inside a closure with no explicit parameter names?
$0, $1, $2, and so on.
Keywords used in declarations:
associatedtype, class, deinit, enum, extension, fileprivate, func, import, init, inout, internal, let, open, operator, private, protocol, public, static, struct, subscript, typealias, and var.
Keywords used in statements:
break, case, continue, default, defer, do, else, fallthrough, for, guard, if, in, repeat, return, switch, where, and while.
Keywords used in expressions and types:
as, Any, catch, false, is, nil, rethrows, super, self, Self, throw, throws, true, and try.
Keywords used in patterns:
_.
Keywords that begin with a number sign (#):
available, #colorLiteral, #column, #else, #elseif, #endif, #error, #file, #fileLiteral, #function, #if, #imageLiteral, #line, #selector, #sourceLocation, and #warning.
Keywords reserved in particular contexts:
associativity, convenience, dynamic, didSet, final, get, infix, indirect, lazy, left, mutating, none, nonmutating, optional, override, postfix, precedence, prefix, Protocol, required, right, set, Type, unowned, weak, and willSet. Outside the context in which they appear in the grammar, they can be used as identifiers.
The following tokens are reserved as punctuation and can’t be used as custom operators:
(, ), {, }, [, ], ., ,, :, ;, =, @, #, & (as a prefix operator), ->, `, ?, and ! (as a postfix operator).
What is a Literal?
A literal is the source code representation of a value of a type, such as a number or string.
The following are examples of literals:
42 // Integer literal
3.14159 // Floating-point literal
“Hello, world!” // String literal
true // Boolean literal
To which protocols does an annotation for a literal value have to conform in order to be inferred?
Swift standard library protocols:
ExpressibleByIntegerLiteral for integer literals, ExpressibleByFloatLiteral for floating-point literals, ExpressibleByStringLiteral for string literals, ExpressibleByBooleanLiteral for Boolean literals, ExpressibleByUnicodeScalarLiteral for string literals that contain only a single Unicode scalar, and ExpressibleByExtendedGraphemeClusterLiteral for string literals that contain only a single extended grapheme cluster.
For example, Int8 conforms to the ExpressibleByIntegerLiteral protocol, and therefore it can be used in the type annotation for the integer literal 42 in the declaration let x: Int8 = 42.
What are Integer Literals?
Integer literals represent integer values of unspecified precision.
What are the integer literals types?
Decimal 0-9, Binary begin with 0b from 0-1, Octal begin with 0o from 0-7, Hexadecimal begin with 0x from 0-9 A-F or a-f. Negative -(0-9)
What are underscores (_) used for in integers?
readability:
1_0 is equal to 10
001 is equal to 1
00_1 is equal to 1
What are the Floating-Point Literals?
Floating-point literals represent floating-point values of unspecified precision.
What is the default inferred type of a floating-point literal?
Unless otherwise specified, the default inferred type of a floating-point literal is the Swift standard library type Double
How many bits is a Double floating-point number?
64-bit
How many bits is a Float floating-point number?
32-bit
How can String literals be declared?
single-line = “These are the same.”
multi-line = “””
These are the same.
“””
What are the String scape sequences?
Basically using a backlash (\) Null character (\0) Backslash (\\) Horizontal tab (\t) Line feed (\n) Carriage return (\r) Double quotation mark (\") Single quotation mark (\') Unicode scalar (\u{n}), where n is a hexadecimal number that has one to eight digits