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 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2

Version Information

F# Runtime

Supported in: 2.0, 4.0

Silverlight

Supported in: 3

See Also

Reference

Core.LanguagePrimitives Module (F#)