<html><head><title>MooX::Types::CLike</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" >
</head>
<body class='pod'>
<!--
generated by Pod::Simple::HTML v3.20,
using Pod::Simple::PullParser v3.20,
under Perl v5.016000 at Tue Oct 2 15:33:52 2012 GMT.
If you want to change this HTML document, you probably shouldn't do that
by changing it directly. Instead,
more»
=pod
=encoding utf-8
=head1 NAME
MooX::Types::CLike - C-like data types for Moo
=head1 SYNOPSIS
package MyPackage;
use Moo;
use MooX::Types::CLike qw(:all);
has 'foo' => (
isa => Int # or Int32, Signed32
);
has 'bar' => (
isa => Short # or SmallInt, Int16, Signed16
);
use Scalar::Util qw(blessed);
use Math::BigFloat;
use Sub::Quote;
has 'b
more»