Sha256: 39f078e79c227a252749b56ed687c6b5d88795b818ea6e4effb802424276c04a

Contents?: true

Size: 283 Bytes

Versions: 11

Compression:

Stored size: 283 Bytes

Contents

#!/usr/bin/env alf
# Give all suppliers, except those living in Paris
(minus :suppliers, 
       (restrict :suppliers, lambda{ city == 'Paris' }))

# This is a contrived example for illustrating minus, as the
# following is equivalent
(restrict :suppliers, lambda{ city != 'Paris' })

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
alf-0.12.2 examples/operators/minus.alf
alf-0.12.1 examples/operators/minus.alf
alf-0.12.0 examples/operators/minus.alf
alf-0.11.1 examples/operators/minus.alf
alf-0.11.0 examples/operators/minus.alf
alf-0.10.1 examples/operators/minus.alf
alf-0.10.0 examples/operators/minus.alf
alf-0.9.3 examples/operators/minus.alf
alf-0.9.2 examples/minus.alf
alf-0.9.1 examples/minus.alf
alf-0.9.0 examples/minus.alf