Skip to content

Instantly share code, notes, and snippets.

@an0
an0 / CocoaSwiftMismatch.md
Last active February 28, 2016 23:38
Cocoa Swift Mismatch
@an0
an0 / flatMap.md
Created December 5, 2015 03:34
flatMap

box1_of_e1.flatMap(e1 -> box2_of_e2) -> box1_of_e2

  1. Maps every element of the source box to a target box.
  2. If the target box is not empty, unwraps it and puts its content into the source box.
  3. If the target box is empty, ignores it.

So it filters out empty target boxes. But it doesn't filter out empty elements of the source box. The mapping function f must handle empty source elements.

@an0
an0 / CaseLetWhere.swift
Created August 6, 2015 20:15
Case-condition is Powerful
for case (let x, 0) in [(0, 0), (0, 1), (1, 0), (1, 1)] where x > 0 {
print(x)
}
// Source: https://twitter.com/AirspeedSwift/status/618546432954474497
prefix func !<T>(t: T?) -> T {
return t ?? Array<Int8>(count: sizeof(T), repeatedValue: 0).withUnsafeBufferPointer {
UnsafePointer($0.baseAddress).memory
}
}
prefix func !<T: ExtensibleCollectionType>(t: T?) -> T {
return t ?? T()
@an0
an0 / A2Z.swift
Last active February 28, 2016 23:41
A...Z
extension Character: ForwardIndexType {
public func successor() -> Character {
return Character(String(self).successor())
}
}
extension String: ForwardIndexType {
public func successor() -> String {
let scalars = self.unicodeScalars
let scalar = scalars[scalars.startIndex]
@an0
an0 / MutateStructArray.swift
Last active February 28, 2016 23:43
Mutate structs in array
struct Foo {
var i: Int = 0
}
var arr = [Foo(), Foo()]
print(arr)
for var a in arr {
a.i = 1
}
@an0
an0 / OptionalTypeCastingIssues.swift
Last active February 28, 2016 23:46
Optional Type Casting Issues
class Foo {
}
class Bar: Foo {
}
//let b: Bar? = nil
let b: Bar? = Bar()
@an0
an0 / WeakSaferThanStrong.md
Created November 4, 2016 19:38
When weak is safer than strong

http://clang.llvm.org/docs/AutomaticReferenceCounting.html#self:

The self parameter variable of an Objective-C method is never actually retained by the implementation.

But http://clang.llvm.org/docs/AutomaticReferenceCounting.html#semantics:

For __weak objects, the current pointee is retained and then released at the end of the current full-expression. This must execute atomically with respect to assignments and to the final release of the pointee. For all other objects, the lvalue is loaded with primitive semantics.

The whole scheme makes weak references safer then strong references sometimes:

__block NSArray *strongArray = @[@1, @2];
@an0
an0 / keybase.md
Created February 10, 2017 01:45
Keybase Proof

Keybase proof

I hereby claim:

  • I am an0 on github.
  • I am an0 (https://keybase.io/an0) on keybase.
  • I have a public key ASCrKRZNGiZhsiJnfc9Ey5RkFBxrTSUvp-j2nwz_m3v-SQo

To claim this, I am signing this object:

@an0
an0 / AsAny.swift
Last active February 28, 2017 22:06
// Discussion: https://twitter.com/an0/status/644176341986856960
["a": "a"] as? [String: Any] // warning: conditional cast from '[String : Any]' to '[String : Any]' always succeeds
let a: Any = ["a": "a"]
let b = a as? [String: String]
let c = a as? [String: AnyObject]
let d = a as? [String: Any]
if let b = b {