UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
StringViewable.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"
8#include <type_traits>
9
10namespace UE
11{
12 // Concept which describes a type which can be bound to a TStringView.
13 template <typename CharRangeType>
15 (
16 std::is_pointer_v<std::decay_t<CharRangeType>> &&
18 ) || (
21 );
22}
typename TElementType< T >::Type TElementType_T
Definition ElementType.h:57
Definition CharType.h:13
Definition ContiguousRange.h:14
Definition StringViewable.h:14
Definition AdvancedWidgetsModule.cpp:13