Sha256: f699f9775d67a3432bc4e6fa9f32faac931e9e2ee04a4781888555893ccdd1c4

Contents?: true

Size: 358 Bytes

Versions: 1

Compression:

Stored size: 358 Bytes

Contents

# DNF

Convert any boolean expression to disjunctive normal form (DNF).

## Installation

```ruby
gem 'dnf'
```

## Usage

```ruby
expression = "(!a | !b) & c"
boolean_expression = Dnf::BooleanExpression.new(expression)
boolean_expression.to_dnf # => "!a & c | !b & c"
```

## License

The gem is available as open source under the terms of the MIT License.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dnf-0.1.0 README.md