The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::C2FIT::ScientificDoubleTypeAdapter - A type adapter capable of checking float numbers

SYNOPSIS

Typically, you instruct fit to use this TypeAdapter by following (where aColumn is the column heading):

        package MyColumnFixture
        use base 'Test::C2FIT::ColumnFixture';
        use strict;
        
        sub new {
            my $pkg = shift;
            return $pkg->SUPER::new( fieldColumnTypeMap => { 'aColumn' => 'Test::C2FIT::ScientificDoubleTypeAdapter' } );
        }

DESCRIPTION

Better support for equality checking of floats than abs($a - $b) < $threshold

SEE ALSO

Extensive and up-to-date documentation on FIT can be found at: http://fit.c2.com/