Files
SwiftUI/Examples/2048 Game/SwiftUI2048/FunctionalUtils.swift
Ivan Vorobei 5eaf1fbc68 Add 2048 Game
2019-06-06 22:28:01 +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)
}