Skip to content

Instantly share code, notes, and snippets.

@rizumita
Created October 25, 2017 21:53
Show Gist options
  • Save rizumita/b84410ed33181073c9d58fd563fbed59 to your computer and use it in GitHub Desktop.
Save rizumita/b84410ed33181073c9d58fd563fbed59 to your computer and use it in GitHub Desktop.
func const<A, B>(_ value: A) -> (B) -> A {
return { _ in value }
}
let f_const: (String) -> () = { const(())(foo("bar")($0)) }
f_const("hoge") // 返値がVoidなのでWarningが発生しない
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment