Operators.limitedHash<'T> Function (F#)
A generic hash function. This function has the same behavior as hash, however the default structural hashing for F# union, record and tuple types stops when the given limit of nodes is reached. The exact behavior of the function can be adjusted on a type-by-type basis by implementing GetHashCode for each type.
Namespace/Module Path: Microsoft.FSharp.Core.Operators
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
limitedHash : int -> 'T -> int (requires equality)
// Usage:
limitedHash limit obj
Parameters
limit
Type: intThe limit of nodes.
obj
Type: 'TThe input object.
Return Value
The computed hash.
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