ABT.MemberIterator.Status.LocateScalar C# (CSharp) Method

LocateScalar() private method

Try to match a scalar. This step doesn't check what scalar it is. Further steps would perform implicit conversions.
private LocateScalar ( ) : void
return void
            private void LocateScalar() {
                while (!this.CurType.IsScalar) {
                    this.indices.Add(0);
                }
            }