The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Salvation::UpdateGvFLAGS - Modifies GvFLAGS of a given SV

SYNOPSIS

    Salvation::UpdateGvFLAGS::toggle( *asd::qwe, 0x80 );

FUNCTIONS

toggle( sv, flag )

Toggles given flag within GvFLAGS of an SV.

toggle_glob_flag_by_name( name, flag )

An alias for toggle.

Example usage: package asd; sub qwe {} package main; Salvation::UpdateGvFLAGS::toggle_glob_flag_by_name( 'asd::qwe', 0x80 );

toggle_glob_flag_by_globref( ref, flag )

An alias for toggle.

Example usage: package asd; sub qwe {} package main; Salvation::UpdateGvFLAGS::toggle_glob_flag_by_globref( \*asd::qwe, 0x80 );

toggle_glob_flag_by_coderef( ref, flag )

An alias for toggle.

Example usage: package asd; sub qwe {} package main; Salvation::UpdateGvFLAGS::toggle_glob_flag_by_coderef( \&asd::qwe, 0x80 );