Files
SwiftUI/Other Projects/2048 Game/SwiftUI2048/FunctionalUtils.swift
Ivan Vorobei 48001a8e9a Update
2019-06-26 22:12:35 +03:00

14 lines
232 B
Swift
Executable File

//
// FunctionalUtils.swift
// SwiftUI2048
//
// Created by Hongyu on 6/5/19.
// Copyright © 2019 Cyandev. All rights reserved.
//
import Foundation
func bind<T, U>(_ x: T, _ closure: (T) -> U) -> U {
return closure(x)
}