Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,006 for character (0.26 sec)

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

       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-09 15:49
    - 53.8K bytes
    - Viewed (0)
  2. src/unicode/graphic.go

    const (
    	pC     = 1 << iota // a control character.
    	pP                 // a punctuation character.
    	pN                 // a numeral.
    	pS                 // a symbolic character.
    	pZ                 // a spacing character.
    	pLu                // an upper-case letter.
    	pLl                // a lower-case letter.
    	pp                 // a printable character according to Go's definition.
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-11-06 20:02
    - 4.4K bytes
    - Viewed (0)
  3. src/regexp/syntax/doc.go

    Single characters:
    
    	.              any character, possibly including newline (flag s=true)
    	[xyz]          character class
    	[^xyz]         negated character class
    	\d             Perl character class
    	\D             negated Perl character class
    	[[:alpha:]]    ASCII character class
    	[[:^alpha:]]   negated ASCII character class
    	\pN            Unicode character class (one-letter name)
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-03-19 11:21
    - 5.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

       * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if
       * no matching character is present.
       *
       * <p>The default implementation iterates over the sequence in forward order calling {@link
       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-09 15:49
    - 53.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TableCollectionTest.java

        abstract Table<String, Integer, Character> createTable();
    
        @Override
        @SuppressWarnings("unchecked")
        public Cell<String, Integer, Character>[] createArray(int length) {
          return (Cell<String, Integer, Character>[]) new Cell<?, ?, ?>[length];
        }
    
        @Override
        public List<Cell<String, Integer, Character>> order(
            List<Cell<String, Integer, Character>> insertionOrder) {
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-19 20:34
    - 35.3K bytes
    - Viewed (0)
  6. src/path/match.go

    //		{ term }
    //	term:
    //		'*'         matches any sequence of non-/ characters
    //		'?'         matches any single non-/ character
    //		'[' [ '^' ] { character-range } ']'
    //		            character class (must be non-empty)
    //		c           matches character c (c != '*', '?', '\\', '[')
    //		'\\' c      matches character c
    //
    //	character-range:
    //		c           matches character c (c != '\\', '-', ']')
    //		'\\' c      matches character c
    Registered: 2024-06-12 16:32
    - Last Modified: 2023-11-23 17:33
    - 5.3K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/TestCharacterListGenerator.java

        Character[] array = new Character[elements.length];
        int i = 0;
        for (Object e : elements) {
          array[i++] = (Character) e;
        }
        return create(array);
      }
    
      /**
       * Creates a new collection containing the given elements; implement this method instead of {@link
       * #create(Object...)}.
       */
      protected abstract List<Character> create(Character[] elements);
    
      @Override
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-21 16:49
    - 1.8K bytes
    - Viewed (0)
  8. src/strconv/quote.go

    }
    
    // UnquoteChar decodes the first character or byte in the escaped string
    // or character literal represented by the string s.
    // It returns four values:
    //
    //  1. value, the decoded Unicode code point or byte value;
    //  2. multibyte, a boolean indicating whether the decoded character requires a multibyte UTF-8 representation;
    //  3. tail, the remainder of the string after the character; and
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-04-04 14:21
    - 16.5K bytes
    - Viewed (0)
  9. src/path/filepath/match.go

    //	term:
    //		'*'         matches any sequence of non-Separator characters
    //		'?'         matches any single non-Separator character
    //		'[' [ '^' ] { character-range } ']'
    //		            character class (must be non-empty)
    //		c           matches character c (c != '*', '?', '\\', '[')
    //		'\\' c      matches character c
    //
    //	character-range:
    //		c           matches character c (c != '\\', '-', ']')
    //		'\\' c      matches character c
    Registered: 2024-06-12 16:32
    - Last Modified: 2024-05-23 01:00
    - 8.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public class TablesTransformValuesTest extends AbstractTableTest<Character> {
    
      private static final Function<@Nullable String, @Nullable Character> FIRST_CHARACTER =
          new Function<@Nullable String, @Nullable Character>() {
            @Override
            public @Nullable Character apply(@Nullable String input) {
              return input == null ? null : input.charAt(0);
            }
          };
    
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-03-04 16:54
    - 3.1K bytes
    - Viewed (0)
Back to top