Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for IntFunction (0.51 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/nonunit_lambda_multiple_statements.kt

    fun builder(block: () -> Int): Boolean {
        block()
        return true
    }
    
    fun intFunction(): Int {
        return 5
    }
    
    fun test(b: Boolean) {
        builder {
            <expr>intFunction()</expr>
            intFunction()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 214 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/nonunit_lambda.kt

    fun builder(block: () -> Int): Boolean {
        block()
        return true
    }
    
    fun intFunction(): Int {
        return 5
    }
    
    fun test(b: Boolean) {
        builder { <expr>intFunction()</expr> }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 180 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/nonunit_lambda.txt

    expression: CALL_EXPRESSION
    text: intFunction()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 73 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/nonunit_lambda_multiple_statements.txt

    expression: CALL_EXPRESSION
    text: intFunction()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 74 bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/CollectSpliterators.java

      static <T extends @Nullable Object> Spliterator<T> indexed(
          int size, int extraCharacteristics, IntFunction<T> function) {
        return indexed(size, extraCharacteristics, function, null);
      }
    
      static <T extends @Nullable Object> Spliterator<T> indexed(
          int size,
          int extraCharacteristics,
          IntFunction<T> function,
          @CheckForNull Comparator<? super T> comparator) {
        if (comparator != null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

    import javax.annotation.Nullable;
    import java.util.Arrays;
    import java.util.BitSet;
    import java.util.Collections;
    import java.util.List;
    import java.util.Set;
    import java.util.function.IntFunction;
    
    /**
     * This is the heart of the attribute matching algorithm and is used whenever there are multiple candidates to choose from.
     * <p>
     * <ol>
     * <li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Streams.java

          return fromSpliterator.characteristics()
              & (Spliterator.ORDERED | Spliterator.SIZED | Spliterator.SUBSIZED);
        }
      }
    
      /**
       * An analogue of {@link java.util.function.IntFunction} also accepting an index.
       *
       * <p>This interface is only intended for use by callers of {@link #mapWithIndex(IntStream,
       * IntFunctionWithIndex)}.
       *
       * @since 21.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
Back to top