clojure.lang.Agent.deref C# (CSharp) Méthode

deref() public méthode

Gets the (immutable) value the reference is holding.
public deref ( ) : object
Résultat object
        public override object deref()
        {
            if (_errors != null)
                throw new Exception("Agent has errors", (Exception)RT.first(_errors));
            return _state;
        }