mirror of
https://github.com/ivanvorobei/SwiftUI.git
synced 2026-01-16 05:56:40 +01:00
14 lines
232 B
Swift
Executable File
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)
|
|
}
|