Helios.Util.InternalThreadLocalMap.IsIndexedVariableSet C# (CSharp) Method

IsIndexedVariableSet() public method

public IsIndexedVariableSet ( int index ) : bool
index int
return bool
        public bool IsIndexedVariableSet(int index)
        {
            object[] lookup = this.indexedVariables;
            return index < lookup.Length && lookup[index] != Unset;
        }
    }