package LLVM::Type; { $LLVM::Type::VERSION = '0.10'; } use strict; use warnings; =head1 NAME LLVM::Type - LLVM type class =head1 VERSION version 0.10 =head1 DESCRIPTION A C represents the type of an individual L. =head1 METHODS =head2 void( ) Create a new C representing a void. =head2 int( $bits ) Create a new C representing an integer with C<$bits> bits (e.g. 16, 32, 64, ...). =head2 float( ) Create a new C representing a float. =head2 double( ) Create a new C representing a double. =head2 func( $ret_type [, $arg_type ...] ) Create a new C representing a function with return type C<$ret_type>. This functions also takes a variable number of arguments representing the arguments of the function. The return type and arguments types must be C objects. =head1 AUTHOR Alessandro Ghedini =head1 LICENSE AND COPYRIGHT Copyright 2012 Alessandro Ghedini. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. =cut 1; # End of LLVM::Type