Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 396 for Tuple1 (0.61 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
        return true;
      }
    };
    
    template <int k>
    struct SameSizeTuplePrefixComparator<k, k> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& t1, const Tuple2& t2) {
        return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
        return true;
      }
    };
    
    template <int k>
    struct SameSizeTuplePrefixComparator<k, k> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& t1, const Tuple2& t2) {
        return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
        return true;
      }
    };
    
    template <int k>
    struct SameSizeTuplePrefixComparator<k, k> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& t1, const Tuple2& t2) {
        return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    template <>
    struct SameSizeTuplePrefixComparator<0, 0> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& /* t1 */, const Tuple2& /* t2 */) {
        return true;
      }
    };
    
    template <int k>
    struct SameSizeTuplePrefixComparator<k, k> {
      template <class Tuple1, class Tuple2>
      static bool Eq(const Tuple1& t1, const Tuple2& t2) {
        return SameSizeTuplePrefixComparator<k - 1, k - 1>::Eq(t1, t2) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/go/types/tuple.go

    type Tuple struct {
    	vars []*Var
    }
    
    // NewTuple returns a new tuple for the given variables.
    func NewTuple(x ...*Var) *Tuple {
    	if len(x) > 0 {
    		return &Tuple{vars: x}
    	}
    	return nil
    }
    
    // Len returns the number variables of tuple t.
    func (t *Tuple) Len() int {
    	if t != nil {
    		return len(t.vars)
    	}
    	return 0
    }
    
    // At returns the i'th variable of tuple t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/tuple.go

    package types2
    
    // A Tuple represents an ordered list of variables; a nil *Tuple is a valid (empty) tuple.
    // Tuples are used as components of signatures and to represent the type of multiple
    // assignments; they are not first class types of Go.
    type Tuple struct {
    	vars []*Var
    }
    
    // NewTuple returns a new tuple for the given variables.
    func NewTuple(x ...*Var) *Tuple {
    	if len(x) > 0 {
    		return &Tuple{vars: x}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 26 17:18:58 UTC 2021
    - 929 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/Tuple3.java

         * @param value3
         *            3番目の値
         * @return 3つの値の組
         */
        public static <T1, T2, T3> Tuple3<T1, T2, T3> tuple3(final T1 value1, final T2 value2, final T3 value3) {
            return new Tuple3<>(value1, value2, value3);
        }
    
        /**
         * インスタンスを構築します。
         */
        public Tuple3() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param value1
         *            1番目の値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/misc/Tuple4.java

         *            4番目の値
         * @return 4つの値の組
         */
        public static <T1, T2, T3, T4> Tuple4<T1, T2, T3, T4> tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) {
            return new Tuple4<>(value1, value2, value3, value4);
        }
    
        /**
         * インスタンスを構築します。
         */
        public Tuple4() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param value1
         *            1番目の値
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/Tuple5.java

         * @return 5つの値の組
         */
        public static <T1, T2, T3, T4, T5> Tuple5<T1, T2, T3, T4, T5> tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4,
                final T5 value5) {
            return new Tuple5<>(value1, value2, value3, value4, value5);
        }
    
        /**
         * インスタンスを構築します。
         */
        public Tuple5() {
        }
    
        /**
         * インスタンスを構築します。
         *
         * @param value1
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/tuple.go

    			// Key fields for de-duplication
    			var tuple *Value
    			idx := 0
    			switch selector.Op {
    			default:
    				continue
    			case OpSelect1:
    				idx = 1
    				fallthrough
    			case OpSelect0:
    				tuple = selector.Args[0]
    				if !tuple.Type.IsTuple() {
    					f.Fatalf("arg of tuple selector %s is not a tuple: %s", selector.String(), tuple.LongString())
    				}
    			case OpSelectN:
    				tuple = selector.Args[0]
    				idx = int(selector.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 02:52:33 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top