Loading [MathJax]/extensions/tex2jax.js
MRFFL: MR Fortran Finance Library 2024-12-28
Computational Tools For Finance
All Namespaces Files Functions Variables
mrffl_bitset.f90 File Reference

Simple sets (using the bits of an integer to indicate element existence). More...

Go to the source code of this file.

Modules

module  mrffl_bitset
 Simple sets (using the bits of an integer to indicate element existence).
 

Functions/Subroutines

integer(kind=ik) pure function, public mrffl_bitset::bitset_size (bitset)
 Return the number of elements in bitset.
 
integer(kind=ik) pure function, public mrffl_bitset::bitset_minus (bitset1, bitset2)
 Return the set diffrence between bitset1 and bitset2.
 
logical pure function, public mrffl_bitset::bitset_subsetp (bitset1, bitset2)
 
logical pure function, public mrffl_bitset::bitset_not_subsetp (bitset1, bitset2)
 
logical pure function, public mrffl_bitset::bitset_intersectp (bitset1, bitset2)
 
logical pure function, public mrffl_bitset::bitset_not_intersectp (bitset1, bitset2)
 

Detailed Description

Simple sets (using the bits of an integer to indicate element existence).

Author
Mitch Richling http://www.mitchr.me/
Date
2025-01-02
Keywords
finance fortran monte carlo inflation cashflow time value of money tvm percentages taxes stock market
Standards
F2023
See also
https://github.com/richmit/FortranFinance

.H.E.!!

Definition in file mrffl_bitset.f90.