Navigation
API > API/Runtime > API/Runtime/uLangCore
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
size_t uLang::ULangGetNum
(
T&& Container |
Generically gets the number of items in a contiguous container Named differently from GetNum() in UnrealTemplate.h to avoid ambiguous overload resolution. | uLang/Common/Templates/Storage.h | |
size_t uLang::ULangGetNum
(
T(&) Container |
uLang/Common/Templates/Storage.h | ||
size_t uLang::ULangGetNum
(
std::initializer_list< T > List |
uLang/Common/Templates/Storage.h | ||
int32_t uLang::ULangGetNum
(
const TRangeView< FirstIterator, LastIterator >& View |
uLang/Common/Templates/Storage.h |
uLang::ULangGetNum(T &&)
Description
Generically gets the number of items in a contiguous container Named differently from GetNum() in UnrealTemplate.h to avoid ambiguous overload resolution.
| Name | uLang::ULangGetNum |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Templates/Storage.h |
| Include Path | #include "uLang/Common/Templates/Storage.h" |
namespace uLang
{
template<typename T, typename>
size_t uLang::ULangGetNum
(
T && Container
)
}
uLang::ULangGetNum(T(&))
| Name | uLang::ULangGetNum |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Templates/Storage.h |
| Include Path | #include "uLang/Common/Templates/Storage.h" |
namespace uLang
{
template<typename T, size_t N>
size_t uLang::ULangGetNum
(
T(&) Container
)
}
uLang::ULangGetNum(std::initializer_list< T >)
| Name | uLang::ULangGetNum |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Templates/Storage.h |
| Include Path | #include "uLang/Common/Templates/Storage.h" |
namespace uLang
{
template<typename T>
size_t uLang::ULangGetNum
(
std::initializer_list< T > List
)
}
uLang::ULangGetNum(const TRangeView< FirstIterator, LastIterator > &)
| Name | uLang::ULangGetNum |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Templates/Storage.h |
| Include Path | #include "uLang/Common/Templates/Storage.h" |
namespace uLang
{
template<typename FirstIterator, typename LastIterator>
int32_t uLang::ULangGetNum
(
const TRangeView < FirstIterator, LastIterator > & View
)
}