class DeducedTemplateArgument
Declaration
class DeducedTemplateArgument : public TemplateArgument { /* full declaration omitted */ };
Description
Captures a template argument whose value has been deduced via c++ template argument deduction.
Declared at: clang/include/clang/Sema/Template.h:266
Inherits from: TemplateArgument
Member Variables
- private bool DeducedFromArrayBound = false
- For a non-type template argument, whether the value was deduced from an array bound.
Method Overview
- public DeducedTemplateArgument()
- public DeducedTemplateArgument(const clang::TemplateArgument & Arg, bool DeducedFromArrayBound = false)
- public DeducedTemplateArgument(clang::ASTContext & Ctx, const llvm::APSInt & Value, clang::QualType ValueType, bool DeducedFromArrayBound)
- public void setDeducedFromArrayBound(bool Deduced)
- public bool wasDeducedFromArrayBound() const
Inherited from TemplateArgument:
- public CreatePackCopy
- public Profile
- public containsUnexpandedParameterPack
- public dump
- public dump
- public getAsDecl
- public getAsExpr
- public getAsIntegral
- public getAsTemplate
- public getAsTemplateOrTemplatePattern
- public getAsType
- public getDependence
- public getEmptyPack
- public getIntegralType
- public getKind
- public getNonTypeTemplateArgumentType
- public getNullPtrType
- public getNumTemplateExpansions
- public getPackAsArray
- public getPackExpansionPattern
- public getParamTypeForDecl
- public isDependent
- public isInstantiationDependent
- public isNull
- public isPackExpansion
- public pack_begin
- public pack_elements
- public pack_end
- public pack_size
- public print
- public setIntegralType
- public structurallyEquals
Methods
¶DeducedTemplateArgument()
DeducedTemplateArgument()
Declared at: clang/include/clang/Sema/Template.h:272
¶DeducedTemplateArgument(
const clang::TemplateArgument& Arg,
bool DeducedFromArrayBound = false)
DeducedTemplateArgument(
const clang::TemplateArgument& Arg,
bool DeducedFromArrayBound = false)
Declared at: clang/include/clang/Sema/Template.h:274
Parameters
- const clang::TemplateArgument& Arg
- bool DeducedFromArrayBound = false
¶DeducedTemplateArgument(
clang::ASTContext& Ctx,
const llvm::APSInt& Value,
clang::QualType ValueType,
bool DeducedFromArrayBound)
DeducedTemplateArgument(
clang::ASTContext& Ctx,
const llvm::APSInt& Value,
clang::QualType ValueType,
bool DeducedFromArrayBound)
Description
Construct an integral non-type template argument that has been deduced, possibly from an array bound.
Declared at: clang/include/clang/Sema/Template.h:280
Parameters
- clang::ASTContext& Ctx
- const llvm::APSInt& Value
- clang::QualType ValueType
- bool DeducedFromArrayBound
¶void setDeducedFromArrayBound(bool Deduced)
void setDeducedFromArrayBound(bool Deduced)
Description
Specify whether the given non-type template argument was deduced from an array bound.
Declared at: clang/include/clang/Sema/Template.h:293
Parameters
- bool Deduced
¶bool wasDeducedFromArrayBound() const
bool wasDeducedFromArrayBound() const
Description
For a non-type template argument, determine whether the template argument was deduced from an array bound.
Declared at: clang/include/clang/Sema/Template.h:289