Page MenuHomeDevCentral

Provide boolean object to compute
ClosedPublic

Authored by dereckson on Jul 2 2023, 18:16.
Tags
None
Referenced Files
F3303856: D3222.diff
Wed, Jul 3, 06:39
Unknown Object (File)
Fri, Jun 28, 21:40
Unknown Object (File)
Wed, Jun 26, 12:43
Unknown Object (File)
Tue, Jun 25, 21:39
Unknown Object (File)
Mon, Jun 24, 03:21
Unknown Object (File)
Sun, Jun 23, 23:04
Unknown Object (File)
Thu, Jun 20, 14:36
Unknown Object (File)
Wed, Jun 19, 18:27
Subscribers
None

Details

Summary

The Boolean objet allows to represent a boolean and perform logical operations.

Allow to apply the main logical operations:

  • and()
  • or()
  • not()

Allow to apply logical secondary operations:

  • xor()
  • implication()
  • equivalence()

Allow to convert to other scalar types:

  • asBool()
  • asInteger() when you need 0 or 1
  • asString() for debug representation

*Use case*

The main motivation is $result &= $callback() uses the bitwise operator &
and as such will return 0 or 1 instead of true and false.

With Boolean, $result.and($callback()) will work as expected.

Test Plan

Unit tests provided

Equivalence tables have been checked against the English Wikipedia
article Boolean algebra.

Diff Detail

Repository
rKERUALD Keruald libraries development repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable