Header menu logo B2R2

Utils Module

A set of convenient misc. functions.

Functions and values

Function or value Description

arg0 === arg1

Full Usage: arg0 === arg1

Parameters:
    arg0 : 'a
    arg1 : 'a

Returns: bool
Modifiers: inline
Type parameters: 'a

Physical equality.

arg0 : 'a
arg1 : 'a
Returns: bool

fatalExit arg1

Full Usage: fatalExit arg1

Parameters:
    arg0 : string

Returns: 'a

Exit the whole program with a fatal error message.

arg0 : string
Returns: 'a

fstOfTriple arg1

Full Usage: fstOfTriple arg1

Parameters:
    arg0 : 'a * 'b * 'c

Returns: 'a
Modifiers: inline
Type parameters: 'a, 'b, 'c

Return the first item of a triple.

arg0 : 'a * 'b * 'c
Returns: 'a

futureFeature ()

Full Usage: futureFeature ()

Parameters:
    () : unit

Returns: 'a

Not implemented features encountered, so raise an exception and die.

() : unit
Returns: 'a

impossible ()

Full Usage: impossible ()

Parameters:
    () : unit

Returns: 'a

Fatal error. This should never happen.

() : unit
Returns: 'a

sndOfTriple arg1

Full Usage: sndOfTriple arg1

Parameters:
    arg0 : 'a * 'b * 'c

Returns: 'b
Modifiers: inline
Type parameters: 'a, 'b, 'c

Return the second item of a triple.

arg0 : 'a * 'b * 'c
Returns: 'b

thdOfTriple arg1

Full Usage: thdOfTriple arg1

Parameters:
    arg0 : 'a * 'b * 'c

Returns: 'c
Modifiers: inline
Type parameters: 'a, 'b, 'c

Return the third item of a triple.

arg0 : 'a * 'b * 'c
Returns: 'c

tupleResultToOpt (arg1, arg2)

Full Usage: tupleResultToOpt (arg1, arg2)

Parameters:
    arg0 : bool
    arg1 : 'a

Returns: 'a option
Modifiers: inline
Type parameters: 'a

Convert a tuple result to an option type. The tuple result is obtained from TryGetValue methods, e.g., from IDictionary.

arg0 : bool
arg1 : 'a
Returns: 'a option

Type something to start searching.