Ferreteria/v0.6/clade/Data/Mem/QVar/@removed

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | Data‎ | Mem‎ | QVar
Revision as of 14:04, 26 November 2025 by Woozle (talk | contribs) (Created page with "{{fmt/title|Removed Code}} =={{fmt/date|2025|09|26}}== Commented out {{fmt/date|2025|05|11}}: {{fmt/php/block|1=# // ++ CLASS MODE ++ // // 2025-05-11 May or may not use this... static private $useRefs = FALSE; static public UseRefs(bool $b=NULL) : bool { return is_null($b) ? self::$useRefs : (self::$useRefs = $b); } // -- CLASS MODE -- // }} =={{fmt/date|2025|04|14}}== These do not appear to be used: {{fmt/php/block|1=# static public function F...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Removed Code

2025-09-26

Commented out 2025-05-11:

#
    // ++ CLASS MODE ++ //

    // 2025-05-11 May or may not use this...
    static private $useRefs = FALSE;
    static public UseRefs(bool $b=NULL) : bool { return is_null($b) ? self::$useRefs : (self::$useRefs = $b); }

    // -- CLASS MODE -- //

2025-04-14

These do not appear to be used:

#
    static public function FromElement(array $ar, $vKey) : iQVar {
        $oThis = new static;
        $oThis->SetFromArrElem($ar,$vKey);
        return $oThis;
    }
    public function SetFromArrElem(array $ar, int|string $idx) {
        if (array_key_exists($idx,$ar)) {
            $this->SetIt($ar[$idx]);
        } else {
            $this->ZapIt();
        }
    }

2025-04-13

Commented out on 2025-04-08:

#
    // 2025-04-08 duplicate of FromOAElement()
    static public function FromAElement(ArrayIface $oa, $vKey) : iQVar {
        $oThis = new static;
        $oThis->RefFromOArrElem($oa,$vKey);
        return $oThis;
    }