As `binary-size` is only valid in patterns, creating a match for it fails: ``` defpat weekday([<<weekday::binary-size(2), " : ">>]) Kernel.match?(weekday(weekday), "Mo : ") ``` Is there a workaround for this?
As
binary-sizeis only valid in patterns, creating a match for it fails:Is there a workaround for this?