コード例 #1
0
 public bool ContentEqualsIgnoreCase(ICharSequence other) => CharUtil.ContentEqualsIgnoreCase(this, other);
コード例 #2
0
 public bool ContentEquals(ICharSequence other) => CharUtil.ContentEquals(this, other);
コード例 #3
0
 public bool RegionMatchesIgnoreCase(int thisStart, ICharSequence seq, int start, int length) =>
 CharUtil.RegionMatchesIgnoreCase(this, this.offset + thisStart, seq, start, length);
コード例 #4
0
 public int IndexOf(char ch, int start = 0) => CharUtil.IndexOf(this, ch, start);
コード例 #5
0
 public bool RegionMatches(int thisStart, ICharSequence seq, int start, int length) =>
 CharUtil.RegionMatches(this, thisStart, seq, start, length);