brutas icon indicating copy to clipboard operation
brutas copied to clipboard

Improve syntax for `Combinator` rules

Open tasooshi opened this issue 3 years ago • 0 comments

So:

        self.left(usernames, self.bits('extra-common')),
        self.right(self.temp('extra-common+simple-brutas-usernames'), self.bits('months')),

Could be written for example as:

        usernames < self.bits('extra-common'),
        self.temp('extra-common+simple-brutas-usernames') > self.bits('months'),

tasooshi avatar May 11 '22 17:05 tasooshi