Versions in this module Expand all Collapse all v0 v0.1.0 Feb 21, 2026 Changes in this version + func MarketCapLayout() *mmapforge.RecordLayout + type MarketCap struct + ID uint64 + MarketCap float64 + Price float64 + Stale bool + Volume float64 + type MarketCapRecord struct + ID uint64 + MarketCap float64 + Price float64 + Stale bool + Volume float64 + type MarketCapStore struct + func NewMarketCapStore(path string) (*MarketCapStore, error) + func OpenMarketCapStore(path string) (*MarketCapStore, error) + func (s *MarketCapStore) Get(idx int) (*MarketCapRecord, error) + func (s *MarketCapStore) GetID(idx int) (uint64, error) + func (s *MarketCapStore) GetMarketCap(idx int) (float64, error) + func (s *MarketCapStore) GetPrice(idx int) (float64, error) + func (s *MarketCapStore) GetStale(idx int) (bool, error) + func (s *MarketCapStore) GetVolume(idx int) (float64, error) + func (s *MarketCapStore) Set(idx int, rec *MarketCapRecord) error + func (s *MarketCapStore) SetID(idx int, val uint64) error + func (s *MarketCapStore) SetMarketCap(idx int, val float64) error + func (s *MarketCapStore) SetPrice(idx int, val float64) error + func (s *MarketCapStore) SetStale(idx int, val bool) error + func (s *MarketCapStore) SetVolume(idx int, val float64) error