LanguagePrimitives.IntrinsicOperators Module (F#)

The F# compiler emits calls to some of the functions in this module as part of the compiled form of some language constructs

Namespace/Module Path: Microsoft.FSharp.Core.LanguagePrimitives

Assembly: FSharp.Core (in FSharp.Core.dll)

module IntrinsicOperators

Values

Value

Description

( & )

Computed the Boolean AND operation. When used as a binary operator the right hand value is evaluated only on demand.

( && )

Computes the Boolean AND operation. When used as a binary operator the right hand value is evaluated only on demand

( || )

Computes the Boolean OR operation. When used as a binary operator the right hand value is evaluated only on demand

( ~& )

Returns the address of the argument as a managed pointer. Uses of this value may result in the generation of unverifiable code.

( ~&& )

Returns the address of the argument as a native pointer. Uses of this value may result in the generation of unverifiable code.

or

Computes the Boolean OR operation. When used as a binary operator the right hand value is evaluated only on demand.

Platforms

Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2

Version Information

F# Core Library Versions

Supported in: 2.0, 4.0, Portable

See Also

Reference

Core.LanguagePrimitives Module (F#)