improve docs

This commit is contained in:
2026-07-10 17:17:14 +01:00
parent 52949200da
commit 9088f6bb14
2 changed files with 6 additions and 5 deletions
+3
View File
@@ -16,12 +16,15 @@ func And(a, b Selector) Selector {
}
}
// OnlyNature will only select records with the given Nature n (G01, G20, etc...).
func OnlyNature(n Nature) Selector {
return func(r Record) bool {
return r.Nature() == n
}
}
// OnlyAssetCountry will only select records with the given ISO code c (620 for Portugal, 196 for
// Cyprus, etc...).
func OnlyAssetCountry(c int64) Selector {
return func(r Record) bool {
return r.AssetCountry() == c