├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── security.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── RELEASE.md ├── SECURITY.md ├── detekt.yml ├── docs ├── README.md ├── appendixes │ ├── README.md │ ├── circulating-currencies.md │ └── cryptocurrencies.md └── usage │ ├── README.md │ ├── allocation.md │ ├── money-currencies.md │ ├── operations.md │ └── rounding.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── money ├── build.gradle.kts ├── dokka.md └── src │ ├── main │ └── kotlin │ │ └── com │ │ └── eriksencosta │ │ └── money │ │ ├── Currency.kt │ │ ├── CurrencyEx.kt │ │ ├── Money.kt │ │ ├── MoneyEx.kt │ │ ├── Number.kt │ │ ├── Percentage.kt │ │ ├── String.kt │ │ ├── allocation │ │ ├── Allocation.kt │ │ ├── Allocator.kt │ │ ├── EvenAllocation.kt │ │ ├── EvenAllocator.kt │ │ ├── Money.kt │ │ ├── Percentage.kt │ │ ├── ProportionalAllocation.kt │ │ ├── ProportionalAllocator.kt │ │ ├── Result.kt │ │ └── difference │ │ │ ├── DifferenceAllocation.kt │ │ │ ├── Discard.kt │ │ │ ├── DistributableAllocation.kt │ │ │ ├── Distribute.kt │ │ │ ├── DistributeBySign.kt │ │ │ ├── IndexBasedAllocation.kt │ │ │ ├── NegativeOnFirst.kt │ │ │ ├── NegativeOnGreatest.kt │ │ │ ├── OnFirst.kt │ │ │ ├── OnFirstGreatest.kt │ │ │ ├── OnFirstNonZero.kt │ │ │ ├── OnFirstSmallest.kt │ │ │ ├── OnFirstValueAllocation.kt │ │ │ ├── OnGreatestValueAllocation.kt │ │ │ ├── OnLast.kt │ │ │ ├── OnLastGreatest.kt │ │ │ ├── OnLastNonZero.kt │ │ │ ├── OnLastSmallest.kt │ │ │ ├── OnLastValueAllocation.kt │ │ │ ├── OnSmallestValueAllocation.kt │ │ │ ├── PositiveOnFirst.kt │ │ │ ├── PositiveOnGreatest.kt │ │ │ ├── SignBasedAllocation.kt │ │ │ └── ValueBasedAllocation.kt │ │ ├── currency │ │ ├── CurrencyBundle.kt │ │ ├── CurrencyData.kt │ │ ├── CurrencyResolution.kt │ │ ├── Map.kt │ │ ├── circulating │ │ │ ├── CirculatingCurrencyBundle.kt │ │ │ └── data │ │ │ │ ├── CurrenciesCodes.kt │ │ │ │ ├── CurrenciesData.kt │ │ │ │ ├── CurrenciesData0.kt │ │ │ │ ├── CurrenciesData1.kt │ │ │ │ ├── CurrenciesData2.kt │ │ │ │ ├── CurrenciesData3.kt │ │ │ │ ├── CurrenciesData4.kt │ │ │ │ ├── CurrenciesData5.kt │ │ │ │ ├── CurrenciesData6.kt │ │ │ │ ├── CurrenciesLookup.kt │ │ │ │ ├── CurrenciesLookup0.kt │ │ │ │ ├── CurrenciesLookup1.kt │ │ │ │ ├── CurrenciesLookup2.kt │ │ │ │ ├── CurrenciesLookup3.kt │ │ │ │ ├── CurrenciesLookup4.kt │ │ │ │ ├── CurrenciesLookup5.kt │ │ │ │ └── CurrenciesSecondaryCodes.kt │ │ └── crypto │ │ │ ├── CryptoCurrencyBundle.kt │ │ │ └── data │ │ │ ├── CurrenciesCodes.kt │ │ │ ├── CurrenciesData.kt │ │ │ ├── CurrenciesData0.kt │ │ │ ├── CurrenciesData1.kt │ │ │ ├── CurrenciesData10.kt │ │ │ ├── CurrenciesData11.kt │ │ │ ├── CurrenciesData12.kt │ │ │ ├── CurrenciesData13.kt │ │ │ ├── CurrenciesData14.kt │ │ │ ├── CurrenciesData15.kt │ │ │ ├── CurrenciesData16.kt │ │ │ ├── CurrenciesData17.kt │ │ │ ├── CurrenciesData18.kt │ │ │ ├── CurrenciesData19.kt │ │ │ ├── CurrenciesData2.kt │ │ │ ├── CurrenciesData20.kt │ │ │ ├── CurrenciesData21.kt │ │ │ ├── CurrenciesData22.kt │ │ │ ├── CurrenciesData23.kt │ │ │ ├── CurrenciesData24.kt │ │ │ ├── CurrenciesData25.kt │ │ │ ├── CurrenciesData26.kt │ │ │ ├── CurrenciesData27.kt │ │ │ ├── CurrenciesData28.kt │ │ │ ├── CurrenciesData29.kt │ │ │ ├── CurrenciesData3.kt │ │ │ ├── CurrenciesData30.kt │ │ │ ├── CurrenciesData31.kt │ │ │ ├── CurrenciesData32.kt │ │ │ ├── CurrenciesData33.kt │ │ │ ├── CurrenciesData34.kt │ │ │ ├── CurrenciesData35.kt │ │ │ ├── CurrenciesData36.kt │ │ │ ├── CurrenciesData37.kt │ │ │ ├── CurrenciesData38.kt │ │ │ ├── CurrenciesData39.kt │ │ │ ├── CurrenciesData4.kt │ │ │ ├── CurrenciesData40.kt │ │ │ ├── CurrenciesData41.kt │ │ │ ├── CurrenciesData42.kt │ │ │ ├── CurrenciesData43.kt │ │ │ ├── CurrenciesData44.kt │ │ │ ├── CurrenciesData45.kt │ │ │ ├── CurrenciesData46.kt │ │ │ ├── CurrenciesData5.kt │ │ │ ├── CurrenciesData6.kt │ │ │ ├── CurrenciesData7.kt │ │ │ ├── CurrenciesData8.kt │ │ │ ├── CurrenciesData9.kt │ │ │ ├── CurrenciesLookup.kt │ │ │ ├── CurrenciesLookup0.kt │ │ │ ├── CurrenciesLookup1.kt │ │ │ ├── CurrenciesLookup10.kt │ │ │ ├── CurrenciesLookup11.kt │ │ │ ├── CurrenciesLookup12.kt │ │ │ ├── CurrenciesLookup13.kt │ │ │ ├── CurrenciesLookup14.kt │ │ │ ├── CurrenciesLookup15.kt │ │ │ ├── CurrenciesLookup16.kt │ │ │ ├── CurrenciesLookup17.kt │ │ │ ├── CurrenciesLookup18.kt │ │ │ ├── CurrenciesLookup2.kt │ │ │ ├── CurrenciesLookup3.kt │ │ │ ├── CurrenciesLookup4.kt │ │ │ ├── CurrenciesLookup5.kt │ │ │ ├── CurrenciesLookup6.kt │ │ │ ├── CurrenciesLookup7.kt │ │ │ ├── CurrenciesLookup8.kt │ │ │ ├── CurrenciesLookup9.kt │ │ │ └── CurrenciesSecondaryCodes.kt │ │ └── gradle │ │ ├── CirculatingCurrenciesDataClassesGenerator.kt │ │ ├── CirculatingCurrenciesDocumentationGenerator.kt │ │ ├── CryptoCurrenciesDataClassesGenerator.kt │ │ ├── CryptoCurrenciesDocumentationGenerator.kt │ │ ├── FileGeneration.kt │ │ └── currency │ │ ├── CurrenciesDataClassesGenerator.kt │ │ ├── CurrenciesDocumentationGenerator.kt │ │ ├── DTIFCurrencies.kt │ │ ├── ICUCurrencies.kt │ │ └── SourceCurrencies.kt │ ├── performanceTest │ └── kotlin │ │ └── com │ │ └── eriksencosta │ │ └── money │ │ └── AllocationPerformanceTest.kt │ └── test │ └── kotlin │ └── com │ └── eriksencosta │ └── money │ ├── CurrencyTest.kt │ ├── Localizable.kt │ ├── MoneyFixtures.kt │ ├── MoneyTest.kt │ ├── NumberTest.kt │ ├── StringTest.kt │ ├── UsageExamples.kt │ ├── allocation │ ├── AllocationExpectations.kt │ ├── AllocationFixtures.kt │ ├── DetailsTest.kt │ ├── EvenAllocatorFixtures.kt │ ├── EvenAllocatorTest.kt │ ├── EvenPartsTest.kt │ ├── Fixtures.kt │ ├── MoneyTest.kt │ ├── PercentageTest.kt │ ├── ProportionalAllocatorFixtures.kt │ ├── ProportionalAllocatorTest.kt │ ├── RatiosTest.kt │ ├── ResultTest.kt │ └── difference │ │ ├── BiasedAllocationFixtures.kt │ │ ├── DiscardFixtures.kt │ │ ├── DiscardTest.kt │ │ ├── DistributableAllocationFixtures.kt │ │ ├── DistributableAllocationTest.kt │ │ ├── Expectations.kt │ │ ├── IndexBasedAllocationFixtures.kt │ │ ├── IndexBasedAllocationTest.kt │ │ ├── SignBasedAllocationFixtures.kt │ │ ├── SignBasedAllocationTest.kt │ │ └── ValueBasedAllocationTest.kt │ └── currency │ ├── CurrencyBundleTest.kt │ ├── CurrencyDataTest.kt │ ├── CurrencyResolutionTest.kt │ ├── circulating │ └── CirculatingCurrencyBundleTest.kt │ └── crypto │ └── CryptoCurrencyBundleTest.kt └── settings.gradle.kts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/.github/workflows/security.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/RELEASE.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/SECURITY.md -------------------------------------------------------------------------------- /detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/detekt.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/appendixes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/appendixes/README.md -------------------------------------------------------------------------------- /docs/appendixes/circulating-currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/appendixes/circulating-currencies.md -------------------------------------------------------------------------------- /docs/appendixes/cryptocurrencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/appendixes/cryptocurrencies.md -------------------------------------------------------------------------------- /docs/usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/usage/README.md -------------------------------------------------------------------------------- /docs/usage/allocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/usage/allocation.md -------------------------------------------------------------------------------- /docs/usage/money-currencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/usage/money-currencies.md -------------------------------------------------------------------------------- /docs/usage/operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/usage/operations.md -------------------------------------------------------------------------------- /docs/usage/rounding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/docs/usage/rounding.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | group=com.eriksencosta 2 | name=money 3 | version=0.3.0 4 | -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/jitpack.yml -------------------------------------------------------------------------------- /money/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/build.gradle.kts -------------------------------------------------------------------------------- /money/dokka.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/dokka.md -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/Currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/Currency.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/CurrencyEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/CurrencyEx.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/Money.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/Money.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/MoneyEx.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/MoneyEx.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/Number.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/Number.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/Percentage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/Percentage.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/String.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/Allocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/Allocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/Allocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/Allocator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/EvenAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/EvenAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/EvenAllocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/EvenAllocator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/Money.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/Money.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/Percentage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/Percentage.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/ProportionalAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/ProportionalAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/ProportionalAllocator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/ProportionalAllocator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/Result.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/Result.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DifferenceAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DifferenceAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/Discard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/Discard.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/Distribute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/Distribute.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DistributeBySign.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/DistributeBySign.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/NegativeOnFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/NegativeOnFirst.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/NegativeOnGreatest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/NegativeOnGreatest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirst.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstGreatest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstGreatest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstNonZero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstNonZero.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstSmallest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstSmallest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstValueAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnFirstValueAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnGreatestValueAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnGreatestValueAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLast.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLast.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastGreatest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastGreatest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastNonZero.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastNonZero.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastSmallest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastSmallest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastValueAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnLastValueAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnSmallestValueAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/OnSmallestValueAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/PositiveOnFirst.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/PositiveOnFirst.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/PositiveOnGreatest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/PositiveOnGreatest.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/allocation/difference/ValueBasedAllocation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/allocation/difference/ValueBasedAllocation.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyBundle.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyData.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyResolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/CurrencyResolution.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/Map.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/CirculatingCurrencyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/CirculatingCurrencyBundle.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesCodes.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData0.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData1.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData2.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData3.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData4.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData5.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesData6.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup0.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup1.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup2.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup3.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup4.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesLookup5.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesSecondaryCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/circulating/data/CurrenciesSecondaryCodes.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/CryptoCurrencyBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/CryptoCurrencyBundle.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesCodes.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData0.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData1.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData10.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData11.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData12.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData13.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData14.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData15.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData16.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData17.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData18.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData19.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData19.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData2.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData20.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData20.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData21.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData21.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData22.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData22.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData23.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData23.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData24.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData24.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData25.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData25.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData26.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData26.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData27.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData27.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData28.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData28.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData29.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData29.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData3.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData30.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData30.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData31.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData31.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData32.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData32.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData33.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData33.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData34.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData34.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData35.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData35.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData36.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData36.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData37.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData37.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData38.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData38.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData39.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData39.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData4.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData40.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData40.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData41.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData41.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData42.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData42.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData43.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData43.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData44.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData44.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData45.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData45.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData46.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData46.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData5.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData6.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData7.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData8.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesData9.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup0.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup0.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup1.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup1.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup10.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup10.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup11.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup11.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup12.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup12.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup13.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup13.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup14.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup14.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup15.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup15.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup16.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup16.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup17.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup17.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup18.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup18.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup2.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup3.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup3.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup4.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup4.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup5.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup5.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup6.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup6.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup7.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup7.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup8.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup8.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup9.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesLookup9.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesSecondaryCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/currency/crypto/data/CurrenciesSecondaryCodes.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/CirculatingCurrenciesDataClassesGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/CirculatingCurrenciesDataClassesGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/CirculatingCurrenciesDocumentationGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/CirculatingCurrenciesDocumentationGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/CryptoCurrenciesDataClassesGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/CryptoCurrenciesDataClassesGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/CryptoCurrenciesDocumentationGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/CryptoCurrenciesDocumentationGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/FileGeneration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/FileGeneration.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/currency/CurrenciesDataClassesGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/currency/CurrenciesDataClassesGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/currency/CurrenciesDocumentationGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/currency/CurrenciesDocumentationGenerator.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/currency/DTIFCurrencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/currency/DTIFCurrencies.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/currency/ICUCurrencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/currency/ICUCurrencies.kt -------------------------------------------------------------------------------- /money/src/main/kotlin/com/eriksencosta/money/gradle/currency/SourceCurrencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/main/kotlin/com/eriksencosta/money/gradle/currency/SourceCurrencies.kt -------------------------------------------------------------------------------- /money/src/performanceTest/kotlin/com/eriksencosta/money/AllocationPerformanceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/performanceTest/kotlin/com/eriksencosta/money/AllocationPerformanceTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/CurrencyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/CurrencyTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/Localizable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/Localizable.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/MoneyFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/MoneyFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/MoneyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/MoneyTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/NumberTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/NumberTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/StringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/StringTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/UsageExamples.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/UsageExamples.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/AllocationExpectations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/AllocationExpectations.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/AllocationFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/AllocationFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/DetailsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/DetailsTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/EvenAllocatorFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/EvenAllocatorFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/EvenAllocatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/EvenAllocatorTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/EvenPartsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/EvenPartsTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/Fixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/Fixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/MoneyTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/MoneyTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/PercentageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/PercentageTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/ProportionalAllocatorFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/ProportionalAllocatorFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/ProportionalAllocatorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/ProportionalAllocatorTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/RatiosTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/RatiosTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/ResultTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/ResultTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/BiasedAllocationFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/BiasedAllocationFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DiscardFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DiscardFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DiscardTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DiscardTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocationFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocationFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/DistributableAllocationTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/Expectations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/Expectations.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocationFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocationFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/IndexBasedAllocationTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocationFixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocationFixtures.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/SignBasedAllocationTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/allocation/difference/ValueBasedAllocationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/allocation/difference/ValueBasedAllocationTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyBundleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyBundleTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyDataTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyDataTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyResolutionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/currency/CurrencyResolutionTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/currency/circulating/CirculatingCurrencyBundleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/currency/circulating/CirculatingCurrencyBundleTest.kt -------------------------------------------------------------------------------- /money/src/test/kotlin/com/eriksencosta/money/currency/crypto/CryptoCurrencyBundleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/money/src/test/kotlin/com/eriksencosta/money/currency/crypto/CryptoCurrencyBundleTest.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eriksencosta/money/HEAD/settings.gradle.kts --------------------------------------------------------------------------------