rewrite deparse system
[scpubgit/DX.git] / lib / DX / Role / BooleanValue.pm
CommitLineData
9d759b64 1package DX::Role::BooleanValue;
2
3use DX::Role;
4
5with 'DX::Role::Value';
6
c25fbf05 7sub for_deparse { [ boolean => $_[0]->is_true ] }
8
9d759b64 9requires 'is_true';
10
111;