| XS::APItest(3p) | Perl Programmers Reference Guide | XS::APItest(3p) |
XS::APItest - Test the perl C API
use XS::APItest;
print_double(4);
use XS::APItest qw(rpn calcrpn);
$triangle = rpn($n $n 1 + * 2 /);
calcrpn $triangle { $n $n 1 + * 2 / }
This module tests the perl C API. Also exposes various bit of the perl internals for the use of core test scripts.
This module can be used to check that the perl C API is behaving correctly. This module provides test functions and an associated test script that verifies the output.
This module is not meant to be installed.
Exports all the test functions:
print_double( $val );
Output is sent to STDOUT.
print_long_double();
Output is sent to STDOUT.
print_long_double() if have_long_double;
print_nv( $val );
Output is sent to STDOUT.
print_iv( $val );
Output is sent to STDOUT.
print_uv( $val );
Output is sent to STDOUT.
print_int( $val );
Output is sent to STDOUT.
print_long( $val );
Output is sent to STDOUT.
print_float( $val );
Output is sent to STDOUT.
call_sv( sub { @_, 'c' }, G_LIST, 'a', 'b');
# returns 'a', 'b', 'c', 3
call_sv( sub { @_ }, G_SCALAR, 'a', 'b');
# returns 'b', 1
These are not supplied by default, but must be explicitly imported. They are lexically scoped.
Tokens of an RPN expression may be separated by whitespace, but such separation is usually not required. It is required only where unseparated tokens would look like a longer token. For example, "12 34 +" can be written as "12 34+", but not as "1234 +".
An RPN expression may be any of:
Because the arithmetic operators all have fixed arity and are postfixed, there is no need for operator precedence, nor for a grouping operator to override precedence. This is half of the point of RPN.
An RPN expression can also be interpreted in another way, as a sequence of operations on a stack, one operation per token. A literal or variable token pushes a value onto the stack. A binary operator pulls two items off the stack, performs a calculation with them, and pushes the result back onto the stack. The stack starts out empty, and at the end of the expression there must be exactly one value left on the stack.
XS::Typemap, perlapi.
Tim Jenness, <t.jenness@jach.hawaii.edu>, Christian Soeller, <csoelle@mph.auckland.ac.nz>, Hugo van der Sanden <hv@crypt.compulink.co.uk>, Andrew Main (Zefram) <zefram@fysh.org>
Copyright (C) 2002,2004 Tim Jenness, Christian Soeller, Hugo van der Sanden. All Rights Reserved.
Copyright (C) 2009 Andrew Main (Zefram) <zefram@fysh.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 2025-01-28 | perl v5.40.1 |