Futilities/human/lib/cMatchResult

From Woozle Writes Code
< Futilities‎ | human‎ | lib
Revision as of 21:53, 24 September 2022 by Woozle (talk | contribs) (Created page with "{{fmt/title|Human Futilities: <code>cMatchResult</code> class}} ==Functions== * <syntaxhighlight lang=php inline>public function __construct(bool $isMatch, string $sWhat)</syn...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Human Futilities: cMatchResult class

Functions

  • public function __construct(bool $isMatch, string $sWhat)
  • protected function SetIsMatch(bool $b) { $this->isMatch = $b; }
  • public function GetIsMatch() : bool { return $this->isMatch; }
  • protected function SetString(string $s) { $this->sWhat = $s; }
  • public function GetString() : string { return $this->sWhat; }