Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for startInclusive (0.07 seconds)

  1. guava/src/com/google/common/base/CharMatcher.java

        private final char startInclusive;
        private final char endInclusive;
    
        InRange(char startInclusive, char endInclusive) {
          checkArgument(endInclusive >= startInclusive);
          this.startInclusive = startInclusive;
          this.endInclusive = endInclusive;
        }
    
        @Override
        public boolean matches(char c) {
          return startInclusive <= c && c <= endInclusive;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 54.4K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

        private final char startInclusive;
        private final char endInclusive;
    
        InRange(char startInclusive, char endInclusive) {
          checkArgument(endInclusive >= startInclusive);
          this.startInclusive = startInclusive;
          this.endInclusive = endInclusive;
        }
    
        @Override
        public boolean matches(char c) {
          return startInclusive <= c && c <= endInclusive;
        }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.9K bytes
    - Click Count (0)
Back to Top