Data interface for the type of an actor run result.

interface IActorHashBindingsOutput {
    hashCollisions: boolean;
    hashFunction: HashFunction;
}

Hierarchy (view full)

Properties

hashCollisions: boolean

If hash collisions are possible with the given hash function.

hashFunction: HashFunction

A string-based hash of the given object.

Param: bindings

The bindings to hash.

Returns

The object's hash.