UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
CompatibleStringViewable.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "Concepts/CharType.h"
9#include <type_traits>
10
11namespace UE
12{
13 // Concept which describes a type which can be bound to a TStringView of a given char encoding type.
14 template <typename CharRangeType, typename CharEncodingType>
16 (
17 std::is_pointer_v<std::decay_t<CharRangeType>> &&
20 ) || (
24 );
25}
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
typename TElementType< T >::Type TElementType_T
Definition ElementType.h:57
Definition CharType.h:13
Definition CompatibleCharType.h:21
Definition CompatibleStringViewable.h:15
Definition ContiguousRange.h:14
Definition AdvancedWidgetsModule.cpp:13