Code Monkey home page Code Monkey logo

perl-math-util-calculatedvalue's Introduction

Math::Util::CalculatedValue - Represents an adjustment to a value (which can contain additional adjustments).

Build Status Coverage Status Gitter chat

SYNOPSIS

my $tid = Math::Util::CalculatedValue->new({
    name        => 'time_in_days',
    description => 'Duration in days',
    set_by      => 'Contract',
    base_amount => 0,
});

my $tiy = Math::Util::CalculatedValue->new({
    name        => 'time_in_years',
    description => 'Duration in years',
    set_by      => 'Contract',
    base_amount => 1,
});

my $dpy = Math::Util::CalculatedValue->new({
    name        => 'days_per_year',
    description => 'days in a year',
    set_by      => 'Contract',
    base_amount => 365,
});

$tid->include_adjustment('reset', $tiy);
$tid->include_adjustment('multiply', $dpy);

print $tid->amount;

ATTRIBUTES

  • name

    This is the name of the operation which called this module

  • description

    This is the description of the operation which called this module

  • set_by

    This is the name of the module which called this module

  • base_amount

    This is the base amount on which the adjustments are to be made

  • metadata

    Additional information that you wish to include.

  • minimum

    The minimum value for amount

  • maximum

    The maximum value for amount

METHODS

  • new

    New instance method

  • amount

    This is the final amount from this object, after applying all adjustments.

  • adjustments

    The ordered adjustments (if any) applied to arrive at the final value.

  • include_adjustment

    Creates the ordered adjustments as per the operation.

  • exclude_adjustment

    Remove an adjustment by name. Returns the number of instances found and excluded. Excluded items are changed into 'info' so that that still show up but are do not alter the parent value

    THis can be extremely dangerous, so make sure you know where and why you are doing it.

  • replace_adjustment

    Replace all instances of the same named adjustment with the provided adjustment

    Returns the number of instances replaced.

  • peek

    Peek at an included adjustment by name.

  • peek_amount

    Peek at the value of an included adjustment by name.

AUTHOR

binary.com, C<< >>

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Math::Util::CalculatedValue

You can also look for information at:

RT: CPAN's request tracker (report bugs here)

http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-Util-CalculatedValue

AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/Math-Util-CalculatedValue

CPAN Ratings

http://cpanratings.perl.org/d/Math-Util-CalculatedValue

Search CPAN

http://search.cpan.org/dist/Math-Util-CalculatedValue/

perl-math-util-calculatedvalue's People

Contributors

shardiwal avatar jy-deriv avatar

Watchers

chylli avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.