slightly less incomplete deparse output
[scpubgit/DX.git] / lib / DX / Value / True.pm
CommitLineData
9d759b64 1package DX::Value::True;
2
3use DX::Class;
4
5with 'DX::Role::BooleanValue';
6
7sub is_true { 1 }
8
9e13b86b 9sub to_data { \1 }
10
9d759b64 111;