member_at starting to work
[scpubgit/DX.git] / lib / DX / Value / True.pm
1 package DX::Value::True;
2
3 use DX::Class;
4
5 with 'DX::Role::BooleanValue';
6
7 sub is_true { 1 }
8
9 1;