Functions
The following functions are available globally.
-
Undocumented
Declaration
Swift
public func + (lhs: CGPoint, rhs: CGPoint) -> CGPoint -
Undocumented
Declaration
Swift
public func += (lhs: inout CGPoint, rhs: CGPoint) -
Undocumented
Declaration
Swift
public func - (lhs: CGPoint, rhs: CGPoint) -> CGPoint -
Undocumented
Declaration
Swift
public func -= (lhs: inout CGPoint, rhs: CGPoint) -
Undocumented
Declaration
Swift
public func * (lhs: CGPoint, rhs: CGPoint) -> CGPoint -
Undocumented
Declaration
Swift
public func *= (lhs: inout CGPoint, rhs: CGPoint) -
Undocumented
Declaration
Swift
public func / (lhs: CGPoint, rhs: CGPoint) -> CGPoint -
Undocumented
Declaration
Swift
public func /= (lhs: inout CGPoint, rhs: CGPoint)
-
Combine the contents of dictionaries into a single dictionary. Equivalent to
lhs.union(rhs).Declaration
Swift
public func + <Key, Value>(lhs: Dictionary<Key, Value>, rhs: Dictionary<Key, Value>) -> Dictionary<Key, Value> where Key : HashableParameters
lhsThe first dictionary.
rhsThe second dictionary.
Return Value
The combination of the two input dictionaries
-
Add the contents of one dictionary to another dictionary. Equivalent to
lhs.unionInPlace(rhs).Declaration
Swift
public func += <Key, Value>(lhs: inout Dictionary<Key, Value>, rhs: Dictionary<Key, Value>) where Key : HashableParameters
lhsThe dictionary in which to add key-values.
rhsThe dictionary from which to add key-values.
-
Undocumented
Declaration
Swift
public func + (lhs: NSMutableAttributedString, rhs: NSAttributedString) -> NSMutableAttributedString -
Undocumented
Declaration
Swift
public func += (lhs: NSMutableAttributedString, rhs: NSAttributedString)
-
Undocumented
Declaration
Swift
public postfix func % (value: CGFloat) -> CGFloat -
Undocumented
Declaration
Swift
public postfix func % (value: Float) -> Float -
Undocumented
Declaration
Swift
public postfix func % (value: Double) -> Double
-
Append a path component to a url. Equivalent to
lhs.appendingPathComponent(rhs).Declaration
Swift
public func + (lhs: URL, rhs: String) -> URLParameters
lhsThe url.
rhsThe path component to append.
Return Value
The original url with the appended path component.
View on GitHub
Install in Dash
Functions Reference