Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)

Enlighten API 3.10 Documentation
Results will update as you type.
  • class Geo GeoDeleteArrayDestructor
  • class Geo GeoDeleteDestructor
  • class Geo GeoDepthCubeMap
  • class Geo GeoEmbreeContext
  • class Geo GeoEqualCString
  • class Geo GeoEvent
  • class Geo GeoFileManager
  • class Geo GeoFileStream
  • class Geo GeoFixedBinarySearchMap
  • class Geo GeoFixedBinarySearchMapCompare
  • class Geo GeoFixedPoolAllocator
  • class Geo GeoFixedString
  • class Geo GeoFlattenAndPackResults
  • class Geo GeoFp16Texture
  • class Geo GeoFpControl
  • class Geo GeoFrameTime
  • class Geo GeoFreeDestructor
  • class Geo GeoGenericTexture
  • class Geo GeoGuid
  • class Geo GeoHalf
  • class Geo GeoHashConstHandle
  • class Geo GeoHashCString
  • class Geo GeoHashDefault
  • class Geo GeoHashHandle
  • class Geo GeoHashMap
  • class Geo GeoHashString
  • class Geo GeoImmutableArray
  • class Geo GeoInputEvent
  • class Geo GeoInstanceCount
  • class Geo GeoIntRange
  • class Geo GeoIntrusivePtr
  • class Geo GeoKeyValueArray
  • class Geo GeoLineSegment
  • class Geo GeoList
  • class Geo GeoMap
  • class Geo GeoMemoryDefault
  • class Geo GeoMemoryPool
  • class Geo GeoMemoryStream
  • class Geo GeoNonAABoundingBox
  • class Geo GeoNoopDestructor
  • class Geo GeoPair
  • class Geo GeoParametrisedPlane3
  • class Geo GeoPriorityQueue
  • class Geo GeoProgress
  • class Geo GeoQueue
  • class Geo GeoQueueEnumInterface
  • class Geo GeoRefArrayPtr
  • class Geo GeoRefCount
  • class Geo GeoRefPtr
  • class Geo GeoRefReleasePtr
  • class Geo GeoReleaseDestructor
  • class Geo GeoRGBXTexture
  • class Geo GeoScopedCSection
  • class Geo GeoSingleton
  • class Geo GeoSpatialHash
  • class Geo GeoString
  • class Geo GeoTimer
  • class Geo GeoTokenList
  • class Geo GeoTokenStream
  • class Geo GeoTriangle
  • class Geo GeoTriple
  • class Geo GeoUniqueDelegatePtr
  • class Geo GeoUniquePtr
  • class Geo GeoUniqueReleasePtr
  • class Geo GeoV128Texture
  • class Geo GeoVariant
  • class Geo GeoVirtualPageAllocator
  • class Geo GeoZLibFileStream
  • class Geo GoodRNG
  • class Geo IdentDataCompare
  • class Geo IdentVertLinkBuilder
  • class Geo IdxLink
  • class Geo IffReader
  • class Geo IffTextWriter
  • class Geo IffWriter
  • class Geo IGeoEvent
  • class Geo IGeoInputStream
  • class Geo IGeoProgressProxy
  • class Geo IGeoRayTracingContext
  • class Geo IGeoReleasable
  • class Geo IGeoSerialisable
    Calendars

You‘re viewing this with anonymous access, so some content might be blocked.
/
class Geo GeoPair

    This is the documentation for Enlighten.

    class Geo GeoPair

    Nov 21, 2019

    template<typename, typename>
    class Geo::GeoPair

    A generic pair class. Inherits things like CopyConstructible or Assignable from its argument types.

    Functions

    Name Description
    GeoPair()

    Constructors.

    GeoPair(const T1 &, const T2 &)

    Constructors.

    GeoPair(T1 &&, const T2 &)

    Constructors.

    GeoPair(const T1 &, T2 &&)

    Constructors.

    GeoPair(T1 &&, T2 &&)

    Constructors.

    GeoPair(const GeoPair &)

    Constructors.

    GeoPair(GeoPair &&)

    Constructors.

    operator!=(const GeoPair &)

    Equality operators.

    operator<(const GeoPair &)

    Comparison operator, required to use this class as a key in an STL-style container.

    operator=(const GeoPair &)

    Assignment.

    operator=(GeoPair &&)

    Move assignment.

    operator==(const GeoPair &)

    Equality operators.

    Variables

    Name Description
    T1 first

    First value.

    T2 second

    Second value.


    Geo::GeoPair< T1, T2 >::GeoPair


    public: GeoPair()


    Constructors.


    Geo::GeoPair< T1, T2 >::GeoPair


    public: GeoPair
    (
        const T1 & t1,
        const T2 & t2
    )


    Constructors.


    GEO_FORCE_INLINE Geo::GeoPair< T1, T2 >::GeoPair


    public: GEO_FORCE_INLINE GeoPair
    (
        T1 && t1,
        const T2 & t2
    )


    Constructors.


    GEO_FORCE_INLINE Geo::GeoPair< T1, T2 >::GeoPair


    public: GEO_FORCE_INLINE GeoPair
    (
        const T1 & t1,
        T2 && t2
    )


    Constructors.


    GEO_FORCE_INLINE Geo::GeoPair< T1, T2 >::GeoPair


    public: GEO_FORCE_INLINE GeoPair
    (
        T1 && t1,
        T2 && t2
    )


    Constructors.


    GEO_FORCE_INLINE Geo::GeoPair< T1, T2 >::GeoPair


    public: GEO_FORCE_INLINE GeoPair
    (
        const GeoPair & rhs
    )


    Constructors.


    GEO_FORCE_INLINE Geo::GeoPair< T1, T2 >::GeoPair


    public: GEO_FORCE_INLINE GeoPair
    (
        GeoPair && rhs
    )


    Constructors.


    bool Geo::GeoPair< T1, T2 >::operator!=


    public: bool operator!=
    (
        const GeoPair & rhs
    ) const


    Equality operators.


    bool Geo::GeoPair< T1, T2 >::operator<


    public: bool operator<
    (
        const GeoPair & rhs
    ) const


    Comparison operator, required to use this class as a key in an STL-style container.


    GeoPair& Geo::GeoPair< T1, T2 >::operator=


    public: GeoPair & operator=
    (
        const GeoPair & rhs
    )


    Assignment.


    GeoPair& Geo::GeoPair< T1, T2 >::operator=


    public: GeoPair & operator=
    (
        GeoPair && rhs
    )


    Move assignment.


    bool Geo::GeoPair< T1, T2 >::operator==


    public: bool operator==
    (
        const GeoPair & rhs
    ) const


    Equality operators.

    , multiple selections available,
    {"serverDuration": 16, "requestCorrelationId": "be6d058ce24c4e0f9af3d10ac906dd9a"}