clojure.lang.APersistentVector.RSeq.index C# (CSharp) Метод

index() публичный Метод

Gets the index associated with this sequence.
public index ( ) : int
Результат int
            public int index()
            {
                // Java original has the following.  I believe this is incorrect.
                //return _i;
                return _v.count() - _i - 1;
            }