Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wordStart (0.25 sec)

  1. tensorflow/c/experimental/ops/gen/common/case_format.cc

      bool inputStart = true;
      bool wordStart = true;
      for (const char c : str) {
        // Find a word start.
        if (c == delimiter) {
          // Repeated cases of wordStart means explicit delimiter usage.
          if (wordStart) {
            result.push_back(delimiter);
          }
          wordStart = true;
          continue;
        }
        if (!from_snake && isupper(c)) {
          wordStart = true;
        }
    
        // add delimiter
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top