[#script_verify_flags-2constructor-07] = xref:script_verify_flags.adoc[script_verify_flags]::script_verify_flags :relfileprefix: ../ :mrdocs: Constructors == Synopses Declared in `<script/verify_flags.h>` Construct an empty flag set (SCRIPT_VERIFY_NONE). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- consteval xref:script_verify_flags/2constructor-06.adoc[script_verify_flags]() = default; ---- [.small]#xref:script_verify_flags/2constructor-06.adoc[_» more..._]# Copy constructor. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:script_verify_flags/2constructor-0c.adoc[script_verify_flags](xref:script_verify_flags.adoc[script_verify_flags] const& other) = default; ---- [.small]#xref:script_verify_flags/2constructor-0c.adoc[_» more..._]# Move constructor. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:script_verify_flags/2constructor-04.adoc[script_verify_flags](xref:script_verify_flags.adoc[script_verify_flags]&& other) = default; ---- [.small]#xref:script_verify_flags/2constructor-04.adoc[_» more..._]# Construct a single‐bit flag set from a SCRIPT_VERIFY_* flag name. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr explicit(false) xref:script_verify_flags/2constructor-01.adoc[script_verify_flags](xref:script_verify_flag_name.adoc[script_verify_flag_name] f); ---- [.small]#xref:script_verify_flags/2constructor-01.adoc[_» more..._]# Construct from a hard‐coded 0 literal; any other value fails at compile time. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- consteval explicit(false) xref:script_verify_flags/2constructor-0f.adoc[script_verify_flags](xref:script_verify_flags/value_type.adoc[value_type] f); ---- [.small]#xref:script_verify_flags/2constructor-0f.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *other* | The flag set to copy. | *f* | The flag name whose bit is set. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#