Public Member Functions

FbxLessCompare< T > Struct Template Reference

Search for all occurrences

Detailed Description

template<typename T>
struct FbxLessCompare< T >

Default comparator for FbxMap and FbxSet2, which assumes operator < is defined.

Definition at line 1402 of file fbxmap.h.

#include <fbxmap.h>

List of all members.

Public Member Functions

int  operator() (const T &left, const T &right) const

Member Function Documentation

int operator() ( const T &  left,
const T &  right 
) const [inline]

Definition at line 1404 of file fbxmap.h.

    {
        return (left < right) ? -1 : ((right < left) ? 1 : 0);
    }

The documentation for this struct was generated from the following file: