init component
This commit is contained in:
15
node_modules/fp-ts/es6/BoundedJoinSemilattice.d.ts
generated
vendored
Normal file
15
node_modules/fp-ts/es6/BoundedJoinSemilattice.d.ts
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* A `BoundedJoinSemilattice` must satisfy the following laws in addition to `JoinSemilattice` laws:
|
||||
*
|
||||
* - `a ∨ 0 <-> a`
|
||||
*
|
||||
* @since 2.0.0
|
||||
*/
|
||||
import { JoinSemilattice } from './JoinSemilattice'
|
||||
/**
|
||||
* @category model
|
||||
* @since 2.0.0
|
||||
*/
|
||||
export interface BoundedJoinSemilattice<A> extends JoinSemilattice<A> {
|
||||
readonly zero: A
|
||||
}
|
||||
Reference in New Issue
Block a user