From my limited experience, you don't want ->new("EUR/USD"), at least not as the canonical version. FX rates tend to be "traditionally" ordered, and in my experience the tradition of the currency pair order is broken/changed far too often to consider EUR/USD and USD/EUR as different pairs. Also, base and quote only make sense as long as your front end system gives you access to which currency actually was the base currency and which was the quoted currency.

Personally, I would keep the currencies and the amounts together, and basically use:

my $fx= MyApp::FXRate->new( EUR => 1_000_000, USD => 1_082_500 );

Alternatively, if you want to allow room for other options, I would propably use something like:

my $fx= MyApp::FX->new( pay => [ EUR => 1_000_000 ], receive => [ USD => 1_082_500 ], spot_date => '2015-03-06', );

In reply to Re: API Design by Corion
in thread API Design by Galdor

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.