Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 283 for Universe (0.12 sec)

  1. src/math/big/example_rat_test.go

    	term := new(big.Rat)
    	if n%3 != 1 {
    		term.SetInt64(1)
    	} else {
    		term.SetInt64((n - 1) / 3 * 2)
    	}
    
    	if n > lim {
    		return term
    	}
    
    	// Directly initialize frac as the fractional
    	// inverse of the result of recur.
    	frac := new(big.Rat).Inv(recur(n+1, lim))
    
    	return term.Add(term, frac)
    }
    
    // This example demonstrates how to use big.Rat to compute the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/DirectedNetworkConnections.java

        return Collections.unmodifiableSet(((BiMap<E, N>) outEdgeMap).values());
      }
    
      @Override
      public Set<E> edgesConnecting(N node) {
        return new EdgesConnecting<>(((BiMap<E, N>) outEdgeMap).inverse(), node);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/DirectedNetworkConnections.java

        return Collections.unmodifiableSet(((BiMap<E, N>) outEdgeMap).values());
      }
    
      @Override
      public Set<E> edgesConnecting(N node) {
        return new EdgesConnecting<>(((BiMap<E, N>) outEdgeMap).inverse(), node);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Synchronized.java

            return delegate().forcePut(key, value);
          }
        }
    
        @Override
        public BiMap<V, K> inverse() {
          synchronized (mutex) {
            if (inverse == null) {
              inverse = new SynchronizedBiMap<>(delegate().inverse(), mutex, this);
            }
            return inverse;
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Synchronized.java

            return delegate().forcePut(key, value);
          }
        }
    
        @Override
        public BiMap<V, K> inverse() {
          synchronized (mutex) {
            if (inverse == null) {
              inverse = new SynchronizedBiMap<>(delegate().inverse(), mutex, this);
            }
            return inverse;
          }
        }
    
        private static final long serialVersionUID = 0;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typeterm.go

    package types2
    
    // A term describes elementary type sets:
    //
    //	 ∅:  (*term)(nil)     == ∅                      // set of no types (empty set)
    //	 𝓤:  &term{}          == 𝓤                      // set of all types (𝓤niverse)
    //	 T:  &term{false, T}  == {T}                    // set of type T
    //	~t:  &term{true, t}   == {t' | under(t') == t}  // set of types with underlying type t
    type term struct {
    	tilde bool // valid if typ != nil
    	typ   Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/go/types/typeterm.go

    package types
    
    // A term describes elementary type sets:
    //
    //	 ∅:  (*term)(nil)     == ∅                      // set of no types (empty set)
    //	 𝓤:  &term{}          == 𝓤                      // set of all types (𝓤niverse)
    //	 T:  &term{false, T}  == {T}                    // set of type T
    //	~t:  &term{true, t}   == {t' | under(t') == t}  // set of types with underlying type t
    type term struct {
    	tilde bool // valid if typ != nil
    	typ   Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typeparams/typeterm.go

    import "go/types"
    
    // A term describes elementary type sets:
    //
    //	 ∅:  (*term)(nil)     == ∅                      // set of no types (empty set)
    //	 𝓤:  &term{}          == 𝓤                      // set of all types (𝓤niverse)
    //	 T:  &term{false, T}  == {T}                    // set of type T
    //	~t:  &term{true, t}   == {t' | under(t') == t}  // set of types with underlying type t
    type term struct {
    	tilde bool // valid if typ != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 21:08:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/math/asinh.go

    //	         := sign(x)*(log(x)+ln2) for large |x|, else
    //	         := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
    //	         := sign(x)*log1p(|x| + x**2/(1 + sqrt(1+x**2)))
    //
    
    // Asinh returns the inverse hyperbolic sine of x.
    //
    // Special cases are:
    //
    //	Asinh(±0) = ±0
    //	Asinh(±Inf) = ±Inf
    //	Asinh(NaN) = NaN
    func Asinh(x float64) float64 {
    	if haveArchAsinh {
    		return archAsinh(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:02:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/UndirectedNetworkConnections.java

        return Collections.unmodifiableSet(((BiMap<E, N>) incidentEdgeMap).values());
      }
    
      @Override
      public Set<E> edgesConnecting(N node) {
        return new EdgesConnecting<>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 17:18:04 UTC 2021
    - 1.9K bytes
    - Viewed (0)
Back to top