clojure.lang.StringSeq.rest C# (CSharp) Method

rest() public method

Gets the rest of the sequence.
public rest ( ) : ISeq
return ISeq
        public override ISeq rest()
        {
            return _i + 1 < _s.Length
                ? new StringSeq(_meta, _s, _i + 1)
                : null;
        }