slightly less incomplete deparse output
[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 sub to_data { \1 }
10
11 1;