Ferreteria/v0.6/sys/Registry/class

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | sys/Registry
Revision as of 01:45, 16 October 2025 by Woozle (talk | contribs) (Created page with "{{fmt/title|about <u>class</u> registries|see also: {{l/same|object}} registries}} ==About== * '''Purpose''': You have a set of classes (clade-family) for handling a situation, and you need to look up the class to use. Often this is a Singleton object which can then be accessed from a static method in the class (typically <code>{{l/ver/fx|Me}}()</code>). ===use-cases=== As of 2025-10-15: I'm not sure if this concept is currently in use. There's a variant, {{l/ver/clade|C...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
about class registries
see also: object registries

About

  • Purpose: You have a set of classes (clade-family) for handling a situation, and you need to look up the class to use. Often this is a Singleton object which can then be accessed from a static method in the class (typically Me()).

use-cases

As of 2025-10-15: I'm not sure if this concept is currently in use. There's a variant, Classes, where the context is invoked through a function. I'm not sure if this is in use either, though that at least is easier to check (#TODO).

Clades