Function or value | Description |
Full Usage:
!>x
Parameters:
^a
Returns: ^b
Modifiers: inline Type parameters: ^a, ^b |
|
Full Usage:
(^)
Returns: ('a -> 'b) -> 'a -> 'b
|
|
Full Usage:
x |>! fn
Parameters:
'a
fn : 'a -> 'b
Returns: 'a
Modifiers: inline |
|
Full Usage:
curry f a b
Parameters:
'd * 'e -> 'f
a : 'd
b : 'e
Returns: 'f
Modifiers: inline Type parameters: 'd, 'e, 'f |
|
Full Usage:
curry3 f a b c
Parameters:
'a * 'b * 'c -> 'd
a : 'a
b : 'b
c : 'c
Returns: 'd
Modifiers: inline |
|
Full Usage:
fix f x
Parameters:
('d -> 'e) -> 'd -> 'e
x : 'd
Returns: 'e
|
|
Full Usage:
fix2 f x y
Parameters:
('a -> 'b -> 'c) -> 'a -> 'b -> 'c
x : 'a
y : 'b
Returns: 'c
|
|
Full Usage:
fix3 f x y z
Parameters:
('a -> 'b -> 'c -> 'd) -> 'a -> 'b -> 'c -> 'd
x : 'a
y : 'b
z : 'c
Returns: 'd
|
|
Full Usage:
flip f a b
Parameters:
'd -> 'e -> 'f
a : 'e
b : 'd
Returns: 'f
Modifiers: inline Type parameters: 'd, 'e, 'f |
|
Full Usage:
flip3 f a b c
Parameters:
'a -> 'b -> 'c -> 'd
a : 'b
b : 'c
c : 'a
Returns: 'd
Modifiers: inline |
|
Full Usage:
flip4 f a b c d
Parameters:
'a -> 'b -> 'c -> 'd -> 'e
a : 'b
b : 'c
c : 'd
d : 'a
Returns: 'e
Modifiers: inline |
|
Full Usage:
konst a arg2
Parameters:
'a
arg1 : 'b
Returns: 'a
Modifiers: inline |
|
Full Usage:
konst2 a arg2 arg3
Parameters:
'a
arg1 : 'b
arg2 : 'c
Returns: 'a
Modifiers: inline |
|
Full Usage:
reraise' e
Parameters:
exn
Returns: 'T
|
|
Full Usage:
reraiseWith f e
Parameters:
exn -> unit
e : exn
Returns: 'T
|
|
Full Usage:
swap (a, b)
Parameters:
'a
b : 'b
Returns: 'b * 'a
Modifiers: inline |
|
Full Usage:
tee fn x
Parameters:
'a -> 'b
x : 'a
Returns: 'a
Modifiers: inline |
|
Full Usage:
toOption (arg1, arg2)
Parameters:
bool
arg1 : 'a
Returns: 'a option
Modifiers: inline |
|
Full Usage:
tryWith f x
Parameters:
'a -> bool * 'b
x : 'a
Returns: 'b option
Modifiers: inline |
|
Full Usage:
tuple2 a b
Parameters:
'a
b : 'b
Returns: 'a * 'b
Modifiers: inline |
|
Full Usage:
tuple3 a b c
Parameters:
'a
b : 'b
c : 'c
Returns: 'a * 'b * 'c
Modifiers: inline |
|
Full Usage:
tuple4 a b c d
Parameters:
'a
b : 'b
c : 'c
d : 'd
Returns: 'a * 'b * 'c * 'd
Modifiers: inline |
|
Full Usage:
tuple5 a b c d e
Parameters:
'a
b : 'b
c : 'c
d : 'd
e : 'e
Returns: 'a * 'b * 'c * 'd * 'e
Modifiers: inline |
|
Full Usage:
tuple6 a b c d e f
Parameters:
'a
b : 'b
c : 'c
d : 'd
e : 'e
f : 'f
Returns: 'a * 'b * 'c * 'd * 'e * 'f
Modifiers: inline |
|
Full Usage:
uncurry f (a, b)
Parameters:
'a -> 'b -> 'c
a : 'a
b : 'b
Returns: 'c
Modifiers: inline |
|
Full Usage:
uncurry3 f (a, b, c)
Parameters:
'a -> 'b -> 'c -> 'd
a : 'a
b : 'b
c : 'c
Returns: 'd
Modifiers: inline |
|
Full Usage:
undefined
Returns: 'T
|
Type extension | Description |
Full Usage:
Boolean.parse ()
Parameters:
unit
Returns: string -> bool option
|
Extended Type:
|
Full Usage:
Boolean.parse
Returns: string -> bool option
|
Extended Type:
|
Full Usage:
Byte.parse x
Parameters:
string
Returns: byte option
|
Extended Type:
|
Full Usage:
SByte.parse x
Parameters:
string
Returns: sbyte option
|
Extended Type:
|
Full Usage:
UInt16.parse x
Parameters:
string
Returns: uint16 option
|
Extended Type:
|
Full Usage:
Int16.parse x
Parameters:
string
Returns: int16 option
|
Extended Type:
|
Full Usage:
UInt32.parse x
Parameters:
string
Returns: uint32 option
|
Extended Type:
|
Full Usage:
Int32.parse x
Parameters:
string
Returns: int option
|
Extended Type:
|
Full Usage:
UInt64.parse x
Parameters:
string
Returns: uint64 option
|
Extended Type:
|
Full Usage:
Int64.parse x
Parameters:
string
Returns: int64 option
|
Extended Type:
|
Full Usage:
Decimal.parse x
Parameters:
string
Returns: decimal option
|
Extended Type:
|
Full Usage:
Single.parse x
Parameters:
string
Returns: float32 option
|
Extended Type:
|
Full Usage:
Double.parse x
Parameters:
string
Returns: float option
|
Extended Type:
|
|
Extended Type:
|
|
Extended Type:
|
Full Usage:
DateTime.parseExact formats x
Parameters:
string[]
x : string
Returns: DateTime option
|
Extended Type:
|
Full Usage:
DateTimeOffset.parseExact formats x
Parameters:
string[]
x : string
Returns: DateTimeOffset option
|
Extended Type:
|
Full Usage:
DateTime.parseExactWithOptions style provider formats x
Parameters:
DateTimeStyles
provider : IFormatProvider
formats : string[]
x : string
Returns: DateTime option
|
Extended Type:
|
Full Usage:
DateTimeOffset.parseExactWithOptions style provider formats x
Parameters:
DateTimeStyles
provider : IFormatProvider
formats : string[]
x : string
Returns: DateTimeOffset option
|
Extended Type:
|
Full Usage:
Byte.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: byte option
|
Extended Type:
|
Full Usage:
SByte.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: sbyte option
|
Extended Type:
|
Full Usage:
UInt16.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: uint16 option
|
Extended Type:
|
Full Usage:
Int16.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: int16 option
|
Extended Type:
|
Full Usage:
UInt32.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: uint32 option
|
Extended Type:
|
Full Usage:
Int32.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: int option
|
Extended Type:
|
Full Usage:
UInt64.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: uint64 option
|
Extended Type:
|
Full Usage:
Int64.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: int64 option
|
Extended Type:
|
Full Usage:
Decimal.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: decimal option
|
Extended Type:
|
Full Usage:
Single.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: float32 option
|
Extended Type:
|
Full Usage:
Double.parseWithOptions style provider x
Parameters:
NumberStyles
provider : IFormatProvider
x : string
Returns: float option
|
Extended Type:
|
Full Usage:
DateTime.parseWithOptions style provider x
Parameters:
DateTimeStyles
provider : IFormatProvider
x : string
Returns: DateTime option
|
Extended Type:
|
Full Usage:
DateTimeOffset.parseWithOptions style provider x
Parameters:
DateTimeStyles
provider : IFormatProvider
x : string
Returns: DateTimeOffset option
|
Extended Type:
|
Active pattern | Description |
Full Usage:
(|Boolean|_|)
Returns: string -> bool option
|
|
Full Usage:
(|Byte|_|) arg00
Parameters:
string
Returns: byte option
|
|
|
|
|
|
Full Usage:
(|Decimal|_|) arg00
Parameters:
string
Returns: decimal option
|
|
Full Usage:
(|Double|_|) arg00
Parameters:
string
Returns: float option
|
|
Full Usage:
(|Int16|_|) arg00
Parameters:
string
Returns: int16 option
|
|
Full Usage:
(|Int32|_|) arg00
Parameters:
string
Returns: int option
|
|
Full Usage:
(|Int64|_|) arg00
Parameters:
string
Returns: int64 option
|
|
Full Usage:
(|SByte|_|) arg00
Parameters:
string
Returns: sbyte option
|
|
Full Usage:
(|Single|_|) arg00
Parameters:
string
Returns: float32 option
|
|
Full Usage:
(|UInt16|_|) arg00
Parameters:
string
Returns: uint16 option
|
|
Full Usage:
(|UInt32|_|) arg00
Parameters:
string
Returns: uint32 option
|
|
Full Usage:
(|UInt64|_|) arg00
Parameters:
string
Returns: uint64 option
|
|