diff options
author | Elizabeth Hunt <lizhunt@amazon.com> | 2025-05-16 16:17:13 -0700 |
---|---|---|
committer | Elizabeth Hunt <lizhunt@amazon.com> | 2025-05-16 16:17:13 -0700 |
commit | ef51b25e4388cbdf3a27e23d9f1fa381ae20a5ad (patch) | |
tree | d54be88fa30fd2da97a97fc7006d9ff9d94ed16a /u/fn/callable.ts | |
parent | 1ab20482ab37d7962c8e69701163270e687df3ca (diff) | |
download | ci-ef51b25e4388cbdf3a27e23d9f1fa381ae20a5ad.tar.gz ci-ef51b25e4388cbdf3a27e23d9f1fa381ae20a5ad.zip |
snapshot
Diffstat (limited to 'u/fn/callable.ts')
-rw-r--r-- | u/fn/callable.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/u/fn/callable.ts b/u/fn/callable.ts index 2749947..a087928 100644 --- a/u/fn/callable.ts +++ b/u/fn/callable.ts @@ -13,3 +13,7 @@ export interface SideEffect<T> extends Callable<void, T> { export interface Mapper<T, U> extends Callable<U, T> { (t: T): U; } + +export interface BiMapper<T, U, R> extends Callable { + (t: T, u: U): R; +} |