fx-flow v0.7.0 / pipe/strict / gt
Function: gt()
gt(a)
gt(
a
): (b
) =>boolean
Is a
greater than b
Parameters
• a: string
Returns
Function
Parameters
• b: string
Returns
boolean
Example
typescript
console.log(gt(5, 1)) // true
Source
packages/core/src/pipe/strict/gt.ts:11
gt(a)
gt(
a
): (b
) =>boolean
Parameters
• a: number
Returns
Function
Parameters
• b: number
Returns
boolean
Source
packages/core/src/pipe/strict/gt.ts:12
gt(a)
gt(
a
): (b
) =>boolean
Parameters
• a: Date
Returns
Function
Parameters
• b: Date
Returns
boolean
Source
packages/core/src/pipe/strict/gt.ts:13
gt(a, b)
gt(
a
,b
):boolean
Parameters
• a: string
• b: string
Returns
boolean
Source
packages/core/src/pipe/strict/gt.ts:14
gt(a, b)
gt(
a
,b
):boolean
Parameters
• a: number
• b: number
Returns
boolean
Source
packages/core/src/pipe/strict/gt.ts:15
gt(a, b)
gt(
a
,b
):boolean
Parameters
• a: Date
• b: Date
Returns
boolean