From a383834deae8057788556022b7a21b6d6b47e460 Mon Sep 17 00:00:00 2001 From: Virgil Date: Sat, 4 Apr 2026 09:48:07 +0000 Subject: [PATCH] Normalize example test symbols --- internal/nameutil/name_example_test.go | 2 +- .../zz_codex_examples_example_test.go | 7 - lns_example_test.go | 3 +- pkg/covenant/airdrop_proof_example_test.go | 2 +- pkg/covenant/blind_example_test.go | 3 +- pkg/covenant/covenant_example_test.go | 3 +- pkg/covenant/locked_lookup_example_test.go | 3 +- pkg/covenant/name_example_test.go | 2 +- pkg/covenant/name_lookup_example_test.go | 2 +- pkg/covenant/names_example_test.go | 2 +- pkg/covenant/reserved_lookup_example_test.go | 3 +- pkg/covenant/rules_example_test.go | 2 +- pkg/covenant/rules_extra_example_test.go | 3 +- pkg/covenant/verify_example_test.go | 2 +- .../zz_codex_examples_example_test.go | 599 ----- pkg/dns/common_example_test.go | 3 +- pkg/dns/nsec_example_test.go | 3 +- pkg/dns/resolve_example_test.go | 3 +- pkg/dns/resource_example_test.go | 3 +- pkg/dns/zz_codex_examples_example_test.go | 775 ------- pkg/primitives/claim_example_test.go | 3 +- .../covenant_binary_example_test.go | 3 +- pkg/primitives/covenant_items_example_test.go | 3 +- pkg/primitives/covenant_json_example_test.go | 2 +- pkg/primitives/invitem_example_test.go | 3 +- pkg/primitives/namedelta_example_test.go | 3 +- .../namestate_binary_example_test.go | 2 +- pkg/primitives/namestate_example_test.go | 3 +- pkg/primitives/namestate_json_example_test.go | 2 +- .../namestate_state_example_test.go | 3 +- .../namestate_stats_example_test.go | 2 +- pkg/primitives/outpoint_example_test.go | 2 +- pkg/primitives/outpoint_json_example_test.go | 2 +- pkg/primitives/types_example_test.go | 3 +- pkg/primitives/view_example_test.go | 3 +- .../zz_codex_examples_example_test.go | 699 ------ zz_codex_examples_example_test.go | 1959 ----------------- 37 files changed, 32 insertions(+), 4090 deletions(-) delete mode 100644 internal/nameutil/zz_codex_examples_example_test.go delete mode 100644 pkg/covenant/zz_codex_examples_example_test.go delete mode 100644 pkg/dns/zz_codex_examples_example_test.go delete mode 100644 pkg/primitives/zz_codex_examples_example_test.go delete mode 100644 zz_codex_examples_example_test.go diff --git a/internal/nameutil/name_example_test.go b/internal/nameutil/name_example_test.go index 9fe1c49..103e2e7 100644 --- a/internal/nameutil/name_example_test.go +++ b/internal/nameutil/name_example_test.go @@ -6,7 +6,7 @@ import ( "fmt" ) -func ExampleCanonicalize_good() { +func ExampleCanonicalize() { got, _ := Canonicalize("Example.LTHN.") fmt.Println(got) // Output: example diff --git a/internal/nameutil/zz_codex_examples_example_test.go b/internal/nameutil/zz_codex_examples_example_test.go deleted file mode 100644 index ff74a15..0000000 --- a/internal/nameutil/zz_codex_examples_example_test.go +++ /dev/null @@ -1,7 +0,0 @@ -package nameutil - -// Code generated by Codex. DO NOT EDIT. - -func ExampleCatalogLabel() { - _ = CatalogLabel -} diff --git a/lns_example_test.go b/lns_example_test.go index 285ed12..e7cb021 100644 --- a/lns_example_test.go +++ b/lns_example_test.go @@ -4,8 +4,7 @@ package lns import "fmt" -func ExampleGetServiceName_good() { +func ExampleGetServiceName() { fmt.Println(GetServiceName()) // Output: lns } - diff --git a/pkg/covenant/airdrop_proof_example_test.go b/pkg/covenant/airdrop_proof_example_test.go index 02b7d2d..8bd8836 100644 --- a/pkg/covenant/airdrop_proof_example_test.go +++ b/pkg/covenant/airdrop_proof_example_test.go @@ -4,7 +4,7 @@ package covenant import "fmt" -func ExampletestAirdropProof_good() { +func ExampletestAirdropProof() { proof := testAirdropProof() fmt.Println(proof.isSane()) diff --git a/pkg/covenant/blind_example_test.go b/pkg/covenant/blind_example_test.go index 5f515d3..0fcab9e 100644 --- a/pkg/covenant/blind_example_test.go +++ b/pkg/covenant/blind_example_test.go @@ -8,9 +8,8 @@ import ( "dappco.re/go/lns/pkg/primitives" ) -func ExampleGetBlind_good() { +func ExampleGetBlind() { _, err := GetBlind(1000, primitives.Hash{}) fmt.Println(err == nil) // Output: true } - diff --git a/pkg/covenant/covenant_example_test.go b/pkg/covenant/covenant_example_test.go index 96b9e9b..a03f65e 100644 --- a/pkg/covenant/covenant_example_test.go +++ b/pkg/covenant/covenant_example_test.go @@ -4,8 +4,7 @@ package covenant import "fmt" -func ExampleTypeName_good() { +func ExampleTypeName() { fmt.Println(TypeName(TypeBid)) // Output: BID } - diff --git a/pkg/covenant/locked_lookup_example_test.go b/pkg/covenant/locked_lookup_example_test.go index 3d03005..935c919 100644 --- a/pkg/covenant/locked_lookup_example_test.go +++ b/pkg/covenant/locked_lookup_example_test.go @@ -4,9 +4,8 @@ package covenant import "fmt" -func ExampleGetLockedName_good() { +func ExampleGetLockedName() { item, _ := GetLockedName("NEC") fmt.Println(item.Name) // Output: nec } - diff --git a/pkg/covenant/name_example_test.go b/pkg/covenant/name_example_test.go index df83c1c..3a8f85b 100644 --- a/pkg/covenant/name_example_test.go +++ b/pkg/covenant/name_example_test.go @@ -4,7 +4,7 @@ package covenant import "fmt" -func ExampleVerifyString_good() { +func ExampleVerifyString() { fmt.Println(VerifyString("foo")) // Output: true } diff --git a/pkg/covenant/name_lookup_example_test.go b/pkg/covenant/name_lookup_example_test.go index 66cd0e7..0037e6e 100644 --- a/pkg/covenant/name_lookup_example_test.go +++ b/pkg/covenant/name_lookup_example_test.go @@ -4,7 +4,7 @@ package covenant import "fmt" -func ExampleasciiLowerName_good() { +func ExampleasciiLowerName() { got, _ := asciiLowerName("NEC.lthn.") fmt.Println(got) // Output: nec diff --git a/pkg/covenant/names_example_test.go b/pkg/covenant/names_example_test.go index 3156753..cd8b959 100644 --- a/pkg/covenant/names_example_test.go +++ b/pkg/covenant/names_example_test.go @@ -8,7 +8,7 @@ import ( "dappco.re/go/lns/pkg/primitives" ) -func ExampleHasNames_good() { +func ExampleHasNames() { hash := testNameHash() tx := testNameTx(TypeOpen, hash) fmt.Println(HasNames(tx, map[primitives.Hash]struct{}{hash: {}})) diff --git a/pkg/covenant/reserved_lookup_example_test.go b/pkg/covenant/reserved_lookup_example_test.go index 741bd74..d13b1f7 100644 --- a/pkg/covenant/reserved_lookup_example_test.go +++ b/pkg/covenant/reserved_lookup_example_test.go @@ -4,9 +4,8 @@ package covenant import "fmt" -func ExampleGetReservedName_good() { +func ExampleGetReservedName() { item, _ := GetReservedName("RESERVED") fmt.Println(item.Name) // Output: reserved } - diff --git a/pkg/covenant/rules_example_test.go b/pkg/covenant/rules_example_test.go index 70d8495..d2e75ee 100644 --- a/pkg/covenant/rules_example_test.go +++ b/pkg/covenant/rules_example_test.go @@ -8,7 +8,7 @@ import ( "dappco.re/go/lns/pkg/primitives" ) -func ExampleGetRollout_good() { +func ExampleGetRollout() { start, _ := GetRollout(primitives.Hash{}, NameRules{NoRollout: true}) fmt.Println(start) // Output: 0 diff --git a/pkg/covenant/rules_extra_example_test.go b/pkg/covenant/rules_extra_example_test.go index e46c530..dc88b7d 100644 --- a/pkg/covenant/rules_extra_example_test.go +++ b/pkg/covenant/rules_extra_example_test.go @@ -8,8 +8,7 @@ import ( "dappco.re/go/lns/pkg/primitives" ) -func ExampleCountOpens_good() { +func ExampleCountOpens() { fmt.Println(CountOpens(primitives.Transaction{})) // Output: 0 } - diff --git a/pkg/covenant/verify_example_test.go b/pkg/covenant/verify_example_test.go index 29679b6..56b5b17 100644 --- a/pkg/covenant/verify_example_test.go +++ b/pkg/covenant/verify_example_test.go @@ -8,7 +8,7 @@ import ( "dappco.re/go/lns/pkg/primitives" ) -func ExampleVerifyCovenants_good() { +func ExampleVerifyCovenants() { var prev primitives.Hash prev[0] = 1 diff --git a/pkg/covenant/zz_codex_examples_example_test.go b/pkg/covenant/zz_codex_examples_example_test.go deleted file mode 100644 index 0e20b58..0000000 --- a/pkg/covenant/zz_codex_examples_example_test.go +++ /dev/null @@ -1,599 +0,0 @@ -package covenant - -// Code generated by Codex. DO NOT EDIT. - -func ExampleAddNames() { - _ = AddNames -} - -func ExampleBlind() { - _ = Blind -} - -func ExampleCountRenewals() { - _ = CountRenewals -} - -func ExampleCountUpdates() { - _ = CountUpdates -} - -func ExampleCovenantType_IsKnown() { - _ = (*CovenantType).IsKnown -} - -func ExampleCovenantType_IsLinked() { - _ = (*CovenantType).IsLinked -} - -func ExampleCovenantType_IsName() { - _ = (*CovenantType).IsName -} - -func ExampleCovenantType_String() { - _ = (*CovenantType).String -} - -func ExampleDefaultLockedCatalog() { - _ = DefaultLockedCatalog -} - -func ExampleDefaultReservedCatalog() { - _ = DefaultReservedCatalog -} - -func ExampleGetAddNames() { - _ = GetAddNames -} - -func ExampleGetBlacklist() { - _ = GetBlacklist -} - -func ExampleGetCountOpens() { - _ = GetCountOpens -} - -func ExampleGetCountRenewals() { - _ = GetCountRenewals -} - -func ExampleGetCountUpdates() { - _ = GetCountUpdates -} - -func ExampleGetDefaultLockedCatalog() { - _ = GetDefaultLockedCatalog -} - -func ExampleGetDefaultReservedCatalog() { - _ = GetDefaultReservedCatalog -} - -func ExampleGetGrindName() { - _ = GetGrindName -} - -func ExampleGetHasLockedBinary() { - _ = GetHasLockedBinary -} - -func ExampleGetHasLockedByBinary() { - _ = GetHasLockedByBinary -} - -func ExampleGetHasLockedByHash() { - _ = GetHasLockedByHash -} - -func ExampleGetHasLockedByName() { - _ = GetHasLockedByName -} - -func ExampleGetHasLockedByString() { - _ = GetHasLockedByString -} - -func ExampleGetHasLockedHash() { - _ = GetHasLockedHash -} - -func ExampleGetHasLockedName() { - _ = GetHasLockedName -} - -func ExampleGetHasLockedString() { - _ = GetHasLockedString -} - -func ExampleGetHasNames() { - _ = GetHasNames -} - -func ExampleGetHasReservedBinary() { - _ = GetHasReservedBinary -} - -func ExampleGetHasReservedByBinary() { - _ = GetHasReservedByBinary -} - -func ExampleGetHasReservedByHash() { - _ = GetHasReservedByHash -} - -func ExampleGetHasReservedByName() { - _ = GetHasReservedByName -} - -func ExampleGetHasReservedByString() { - _ = GetHasReservedByString -} - -func ExampleGetHasReservedHash() { - _ = GetHasReservedHash -} - -func ExampleGetHasReservedName() { - _ = GetHasReservedName -} - -func ExampleGetHasReservedString() { - _ = GetHasReservedString -} - -func ExampleGetHasRollout() { - _ = GetHasRollout -} - -func ExampleGetHasSaneCovenants() { - _ = GetHasSaneCovenants -} - -func ExampleGetHashBinary() { - _ = GetHashBinary -} - -func ExampleGetHashByBinary() { - _ = GetHashByBinary -} - -func ExampleGetHashByName() { - _ = GetHashByName -} - -func ExampleGetHashByString() { - _ = GetHashByString -} - -func ExampleGetHashName() { - _ = GetHashName -} - -func ExampleGetHashString() { - _ = GetHashString -} - -func ExampleGetIsLockedUp() { - _ = GetIsLockedUp -} - -func ExampleGetIsReserved() { - _ = GetIsReserved -} - -func ExampleGetLockedBinary() { - _ = GetLockedBinary -} - -func ExampleGetLockedByBinary() { - _ = GetLockedByBinary -} - -func ExampleGetLockedByHash() { - _ = GetLockedByHash -} - -func ExampleGetLockedByName() { - _ = GetLockedByName -} - -func ExampleGetLockedByString() { - _ = GetLockedByString -} - -func ExampleGetLockedCatalog() { - _ = GetLockedCatalog -} - -func ExampleGetLockedHash() { - _ = GetLockedHash -} - -func ExampleGetLockedString() { - _ = GetLockedString -} - -func ExampleGetRemoveNames() { - _ = GetRemoveNames -} - -func ExampleGetReservedBinary() { - _ = GetReservedBinary -} - -func ExampleGetReservedByBinary() { - _ = GetReservedByBinary -} - -func ExampleGetReservedByHash() { - _ = GetReservedByHash -} - -func ExampleGetReservedByName() { - _ = GetReservedByName -} - -func ExampleGetReservedByString() { - _ = GetReservedByString -} - -func ExampleGetReservedCatalog() { - _ = GetReservedCatalog -} - -func ExampleGetReservedHash() { - _ = GetReservedHash -} - -func ExampleGetReservedString() { - _ = GetReservedString -} - -func ExampleGetTypeName() { - _ = GetTypeName -} - -func ExampleGetTypes() { - _ = GetTypes -} - -func ExampleGetTypesByVal() { - _ = GetTypesByVal -} - -func ExampleGetVerificationFlags() { - _ = GetVerificationFlags -} - -func ExampleGetVerificationFlagsByVal() { - _ = GetVerificationFlagsByVal -} - -func ExampleGetVerifyBinary() { - _ = GetVerifyBinary -} - -func ExampleGetVerifyByBinary() { - _ = GetVerifyByBinary -} - -func ExampleGetVerifyByName() { - _ = GetVerifyByName -} - -func ExampleGetVerifyByString() { - _ = GetVerifyByString -} - -func ExampleGetVerifyCovenants() { - _ = GetVerifyCovenants -} - -func ExampleGetVerifyName() { - _ = GetVerifyName -} - -func ExampleGetVerifyString() { - _ = GetVerifyString -} - -func ExampleGrindName() { - _ = GrindName -} - -func ExampleHasLockedBinary() { - _ = HasLockedBinary -} - -func ExampleHasLockedByBinary() { - _ = HasLockedByBinary -} - -func ExampleHasLockedByHash() { - _ = HasLockedByHash -} - -func ExampleHasLockedByName() { - _ = HasLockedByName -} - -func ExampleHasLockedByString() { - _ = HasLockedByString -} - -func ExampleHasLockedHash() { - _ = HasLockedHash -} - -func ExampleHasLockedName() { - _ = HasLockedName -} - -func ExampleHasLockedString() { - _ = HasLockedString -} - -func ExampleHasReservedBinary() { - _ = HasReservedBinary -} - -func ExampleHasReservedByBinary() { - _ = HasReservedByBinary -} - -func ExampleHasReservedByHash() { - _ = HasReservedByHash -} - -func ExampleHasReservedByName() { - _ = HasReservedByName -} - -func ExampleHasReservedByString() { - _ = HasReservedByString -} - -func ExampleHasReservedHash() { - _ = HasReservedHash -} - -func ExampleHasReservedName() { - _ = HasReservedName -} - -func ExampleHasReservedString() { - _ = HasReservedString -} - -func ExampleHasRollout() { - _ = HasRollout -} - -func ExampleHasSaneCovenants() { - _ = HasSaneCovenants -} - -func ExampleHashBinary() { - _ = HashBinary -} - -func ExampleHashByBinary() { - _ = HashByBinary -} - -func ExampleHashByName() { - _ = HashByName -} - -func ExampleHashByString() { - _ = HashByString -} - -func ExampleHashName() { - _ = HashName -} - -func ExampleHashString() { - _ = HashString -} - -func ExampleIsLockedUp() { - _ = IsLockedUp -} - -func ExampleIsReserved() { - _ = IsReserved -} - -func ExampleLockedCatalog_Entries() { - _ = (*LockedCatalog).Entries -} - -func ExampleLockedCatalog_Get() { - _ = (*LockedCatalog).Get -} - -func ExampleLockedCatalog_GetByHash() { - _ = (*LockedCatalog).GetByHash -} - -func ExampleLockedCatalog_GetByName() { - _ = (*LockedCatalog).GetByName -} - -func ExampleLockedCatalog_GetEntries() { - _ = (*LockedCatalog).GetEntries -} - -func ExampleLockedCatalog_GetHasByHash() { - _ = (*LockedCatalog).GetHasByHash -} - -func ExampleLockedCatalog_GetHasByName() { - _ = (*LockedCatalog).GetHasByName -} - -func ExampleLockedCatalog_GetKeys() { - _ = (*LockedCatalog).GetKeys -} - -func ExampleLockedCatalog_GetPrefixSize() { - _ = (*LockedCatalog).GetPrefixSize -} - -func ExampleLockedCatalog_GetSize() { - _ = (*LockedCatalog).GetSize -} - -func ExampleLockedCatalog_GetValues() { - _ = (*LockedCatalog).GetValues -} - -func ExampleLockedCatalog_Has() { - _ = (*LockedCatalog).Has -} - -func ExampleLockedCatalog_HasByHash() { - _ = (*LockedCatalog).HasByHash -} - -func ExampleLockedCatalog_HasByName() { - _ = (*LockedCatalog).HasByName -} - -func ExampleLockedCatalog_Keys() { - _ = (*LockedCatalog).Keys -} - -func ExampleLockedCatalog_PrefixSize() { - _ = (*LockedCatalog).PrefixSize -} - -func ExampleLockedCatalog_Size() { - _ = (*LockedCatalog).Size -} - -func ExampleLockedCatalog_Values() { - _ = (*LockedCatalog).Values -} - -func ExampleRemoveNames() { - _ = RemoveNames -} - -func ExampleReservedCatalog_Entries() { - _ = (*ReservedCatalog).Entries -} - -func ExampleReservedCatalog_Get() { - _ = (*ReservedCatalog).Get -} - -func ExampleReservedCatalog_GetByHash() { - _ = (*ReservedCatalog).GetByHash -} - -func ExampleReservedCatalog_GetByName() { - _ = (*ReservedCatalog).GetByName -} - -func ExampleReservedCatalog_GetEntries() { - _ = (*ReservedCatalog).GetEntries -} - -func ExampleReservedCatalog_GetHasByHash() { - _ = (*ReservedCatalog).GetHasByHash -} - -func ExampleReservedCatalog_GetHasByName() { - _ = (*ReservedCatalog).GetHasByName -} - -func ExampleReservedCatalog_GetKeys() { - _ = (*ReservedCatalog).GetKeys -} - -func ExampleReservedCatalog_GetNameValue() { - _ = (*ReservedCatalog).GetNameValue -} - -func ExampleReservedCatalog_GetPrefixSize() { - _ = (*ReservedCatalog).GetPrefixSize -} - -func ExampleReservedCatalog_GetRootValue() { - _ = (*ReservedCatalog).GetRootValue -} - -func ExampleReservedCatalog_GetSize() { - _ = (*ReservedCatalog).GetSize -} - -func ExampleReservedCatalog_GetTopValue() { - _ = (*ReservedCatalog).GetTopValue -} - -func ExampleReservedCatalog_GetValues() { - _ = (*ReservedCatalog).GetValues -} - -func ExampleReservedCatalog_Has() { - _ = (*ReservedCatalog).Has -} - -func ExampleReservedCatalog_HasByHash() { - _ = (*ReservedCatalog).HasByHash -} - -func ExampleReservedCatalog_HasByName() { - _ = (*ReservedCatalog).HasByName -} - -func ExampleReservedCatalog_Keys() { - _ = (*ReservedCatalog).Keys -} - -func ExampleReservedCatalog_NameValue() { - _ = (*ReservedCatalog).NameValue -} - -func ExampleReservedCatalog_PrefixSize() { - _ = (*ReservedCatalog).PrefixSize -} - -func ExampleReservedCatalog_RootValue() { - _ = (*ReservedCatalog).RootValue -} - -func ExampleReservedCatalog_Size() { - _ = (*ReservedCatalog).Size -} - -func ExampleReservedCatalog_TopValue() { - _ = (*ReservedCatalog).TopValue -} - -func ExampleReservedCatalog_Values() { - _ = (*ReservedCatalog).Values -} - -func ExampleVerifyBinary() { - _ = VerifyBinary -} - -func ExampleVerifyByBinary() { - _ = VerifyByBinary -} - -func ExampleVerifyByName() { - _ = VerifyByName -} - -func ExampleVerifyByString() { - _ = VerifyByString -} - -func ExampleVerifyName() { - _ = VerifyName -} diff --git a/pkg/dns/common_example_test.go b/pkg/dns/common_example_test.go index eb25209..6640b61 100644 --- a/pkg/dns/common_example_test.go +++ b/pkg/dns/common_example_test.go @@ -4,8 +4,7 @@ package dns import "fmt" -func ExampleGetDefaultTTL_good() { +func ExampleGetDefaultTTL() { fmt.Println(GetDefaultTTL()) // Output: 21600 } - diff --git a/pkg/dns/nsec_example_test.go b/pkg/dns/nsec_example_test.go index 0f3d1fb..e08a7e1 100644 --- a/pkg/dns/nsec_example_test.go +++ b/pkg/dns/nsec_example_test.go @@ -4,8 +4,7 @@ package dns import "fmt" -func ExampleNextName_good() { +func ExampleNextName() { fmt.Printf("%q\n", NextName("example")) // Output: "example\x00." } - diff --git a/pkg/dns/resolve_example_test.go b/pkg/dns/resolve_example_test.go index fba7377..48dcb8c 100644 --- a/pkg/dns/resolve_example_test.go +++ b/pkg/dns/resolve_example_test.go @@ -4,8 +4,7 @@ package dns import "fmt" -func ExampleVerifyString_good() { +func ExampleVerifyString() { fmt.Println(VerifyString("Foo-Bar.lthn")) // Output: true } - diff --git a/pkg/dns/resource_example_test.go b/pkg/dns/resource_example_test.go index 01f9ed1..c163e9f 100644 --- a/pkg/dns/resource_example_test.go +++ b/pkg/dns/resource_example_test.go @@ -4,8 +4,7 @@ package dns import "fmt" -func ExampleNewResource_good() { +func ExampleNewResource() { fmt.Println(NewResource().HasNS()) // Output: false } - diff --git a/pkg/dns/zz_codex_examples_example_test.go b/pkg/dns/zz_codex_examples_example_test.go deleted file mode 100644 index 97dbb20..0000000 --- a/pkg/dns/zz_codex_examples_example_test.go +++ /dev/null @@ -1,775 +0,0 @@ -package dns - -// Code generated by Codex. DO NOT EDIT. - -func ExampleCreate() { - _ = Create -} - -func ExampleDSRecord_FromJSON() { - _ = (*DSRecord).FromJSON -} - -func ExampleDSRecord_GetAlgorithm() { - _ = (*DSRecord).GetAlgorithm -} - -func ExampleDSRecord_GetDigest() { - _ = (*DSRecord).GetDigest -} - -func ExampleDSRecord_GetDigestType() { - _ = (*DSRecord).GetDigestType -} - -func ExampleDSRecord_GetJSON() { - _ = (*DSRecord).GetJSON -} - -func ExampleDSRecord_GetKeyTag() { - _ = (*DSRecord).GetKeyTag -} - -func ExampleDSRecord_GetSize() { - _ = (*DSRecord).GetSize -} - -func ExampleDSRecord_GetType() { - _ = (*DSRecord).GetType -} - -func ExampleDSRecord_Type() { - _ = (*DSRecord).Type -} - -func ExampleDecodeResource() { - _ = DecodeResource -} - -func ExampleGLUE4Record_FromJSON() { - _ = (*GLUE4Record).FromJSON -} - -func ExampleGLUE4Record_GetAddress() { - _ = (*GLUE4Record).GetAddress -} - -func ExampleGLUE4Record_GetJSON() { - _ = (*GLUE4Record).GetJSON -} - -func ExampleGLUE4Record_GetNS() { - _ = (*GLUE4Record).GetNS -} - -func ExampleGLUE4Record_GetSize() { - _ = (*GLUE4Record).GetSize -} - -func ExampleGLUE4Record_GetType() { - _ = (*GLUE4Record).GetType -} - -func ExampleGLUE4Record_Type() { - _ = (*GLUE4Record).Type -} - -func ExampleGLUE6Record_FromJSON() { - _ = (*GLUE6Record).FromJSON -} - -func ExampleGLUE6Record_GetAddress() { - _ = (*GLUE6Record).GetAddress -} - -func ExampleGLUE6Record_GetJSON() { - _ = (*GLUE6Record).GetJSON -} - -func ExampleGLUE6Record_GetNS() { - _ = (*GLUE6Record).GetNS -} - -func ExampleGLUE6Record_GetSize() { - _ = (*GLUE6Record).GetSize -} - -func ExampleGLUE6Record_GetType() { - _ = (*GLUE6Record).GetType -} - -func ExampleGLUE6Record_Type() { - _ = (*GLUE6Record).Type -} - -func ExampleGetCreate() { - _ = GetCreate -} - -func ExampleGetDecodeResource() { - _ = GetDecodeResource -} - -func ExampleGetDummy() { - _ = GetDummy -} - -func ExampleGetHSTypes() { - _ = GetHSTypes -} - -func ExampleGetHSTypesByVal() { - _ = GetHSTypesByVal -} - -func ExampleGetHash() { - _ = GetHash -} - -func ExampleGetHashBinary() { - _ = GetHashBinary -} - -func ExampleGetHashByBinary() { - _ = GetHashByBinary -} - -func ExampleGetHashByName() { - _ = GetHashByName -} - -func ExampleGetHashByString() { - _ = GetHashByString -} - -func ExampleGetHashName() { - _ = GetHashName -} - -func ExampleGetHashString() { - _ = GetHashString -} - -func ExampleGetNewResource() { - _ = GetNewResource -} - -func ExampleGetNextName() { - _ = GetNextName -} - -func ExampleGetPrevName() { - _ = GetPrevName -} - -func ExampleGetResolve() { - _ = GetResolve -} - -func ExampleGetResolveBinary() { - _ = GetResolveBinary -} - -func ExampleGetResolveByBinary() { - _ = GetResolveByBinary -} - -func ExampleGetResolveByName() { - _ = GetResolveByName -} - -func ExampleGetResolveByString() { - _ = GetResolveByString -} - -func ExampleGetResolveName() { - _ = GetResolveName -} - -func ExampleGetResolveString() { - _ = GetResolveString -} - -func ExampleGetServiceName() { - _ = GetServiceName -} - -func ExampleGetTypeMapA() { - _ = GetTypeMapA -} - -func ExampleGetTypeMapAAAA() { - _ = GetTypeMapAAAA -} - -func ExampleGetTypeMapEmpty() { - _ = GetTypeMapEmpty -} - -func ExampleGetTypeMapNS() { - _ = GetTypeMapNS -} - -func ExampleGetTypeMapRoot() { - _ = GetTypeMapRoot -} - -func ExampleGetTypeMapTXT() { - _ = GetTypeMapTXT -} - -func ExampleGetVerify() { - _ = GetVerify -} - -func ExampleGetVerifyBinary() { - _ = GetVerifyBinary -} - -func ExampleGetVerifyByBinary() { - _ = GetVerifyByBinary -} - -func ExampleGetVerifyByName() { - _ = GetVerifyByName -} - -func ExampleGetVerifyByString() { - _ = GetVerifyByString -} - -func ExampleGetVerifyName() { - _ = GetVerifyName -} - -func ExampleGetVerifyString() { - _ = GetVerifyString -} - -func ExampleHash() { - _ = Hash -} - -func ExampleHashBinary() { - _ = HashBinary -} - -func ExampleHashByBinary() { - _ = HashByBinary -} - -func ExampleHashByName() { - _ = HashByName -} - -func ExampleHashByString() { - _ = HashByString -} - -func ExampleHashName() { - _ = HashName -} - -func ExampleHashString() { - _ = HashString -} - -func ExampleNSECRecord_GetName() { - _ = (*NSECRecord).GetName -} - -func ExampleNSECRecord_GetNextDomain() { - _ = (*NSECRecord).GetNextDomain -} - -func ExampleNSECRecord_GetTTL() { - _ = (*NSECRecord).GetTTL -} - -func ExampleNSECRecord_GetTypeBitmap() { - _ = (*NSECRecord).GetTypeBitmap -} - -func ExampleNSRecord_FromJSON() { - _ = (*NSRecord).FromJSON -} - -func ExampleNSRecord_GetJSON() { - _ = (*NSRecord).GetJSON -} - -func ExampleNSRecord_GetNS() { - _ = (*NSRecord).GetNS -} - -func ExampleNSRecord_GetSize() { - _ = (*NSRecord).GetSize -} - -func ExampleNSRecord_GetType() { - _ = (*NSRecord).GetType -} - -func ExampleNSRecord_Type() { - _ = (*NSRecord).Type -} - -func ExampleNewService() { - _ = NewService -} - -func ExamplePrevName() { - _ = PrevName -} - -func ExampleResolve() { - _ = Resolve -} - -func ExampleResolveBinary() { - _ = ResolveBinary -} - -func ExampleResolveByBinary() { - _ = ResolveByBinary -} - -func ExampleResolveByName() { - _ = ResolveByName -} - -func ExampleResolveByString() { - _ = ResolveByString -} - -func ExampleResolveName() { - _ = ResolveName -} - -func ExampleResolveString() { - _ = ResolveString -} - -func ExampleResource_Decode() { - _ = (*Resource).Decode -} - -func ExampleResource_Encode() { - _ = (*Resource).Encode -} - -func ExampleResource_FromJSON() { - _ = (*Resource).FromJSON -} - -func ExampleResource_GetDecode() { - _ = (*Resource).GetDecode -} - -func ExampleResource_GetEncode() { - _ = (*Resource).GetEncode -} - -func ExampleResource_GetHasDS() { - _ = (*Resource).GetHasDS -} - -func ExampleResource_GetHasNS() { - _ = (*Resource).GetHasNS -} - -func ExampleResource_GetHasType() { - _ = (*Resource).GetHasType -} - -func ExampleResource_GetJSON() { - _ = (*Resource).GetJSON -} - -func ExampleResource_GetRecords() { - _ = (*Resource).GetRecords -} - -func ExampleResource_GetSize() { - _ = (*Resource).GetSize -} - -func ExampleResource_GetTTL() { - _ = (*Resource).GetTTL -} - -func ExampleResource_GetToDNS() { - _ = (*Resource).GetToDNS -} - -func ExampleResource_GetToDS() { - _ = (*Resource).GetToDS -} - -func ExampleResource_GetToGlue() { - _ = (*Resource).GetToGlue -} - -func ExampleResource_GetToNS() { - _ = (*Resource).GetToNS -} - -func ExampleResource_GetToNSEC() { - _ = (*Resource).GetToNSEC -} - -func ExampleResource_GetToReferral() { - _ = (*Resource).GetToReferral -} - -func ExampleResource_GetToTXT() { - _ = (*Resource).GetToTXT -} - -func ExampleResource_GetToZone() { - _ = (*Resource).GetToZone -} - -func ExampleResource_HasDS() { - _ = (*Resource).HasDS -} - -func ExampleResource_HasNS() { - _ = (*Resource).HasNS -} - -func ExampleResource_HasType() { - _ = (*Resource).HasType -} - -func ExampleResource_ToDNS() { - _ = (*Resource).ToDNS -} - -func ExampleResource_ToDS() { - _ = (*Resource).ToDS -} - -func ExampleResource_ToGlue() { - _ = (*Resource).ToGlue -} - -func ExampleResource_ToNS() { - _ = (*Resource).ToNS -} - -func ExampleResource_ToNSEC() { - _ = (*Resource).ToNSEC -} - -func ExampleResource_ToReferral() { - _ = (*Resource).ToReferral -} - -func ExampleResource_ToTXT() { - _ = (*Resource).ToTXT -} - -func ExampleResource_ToZone() { - _ = (*Resource).ToZone -} - -func ExampleSYNTH4Record_FromJSON() { - _ = (*SYNTH4Record).FromJSON -} - -func ExampleSYNTH4Record_GetAddress() { - _ = (*SYNTH4Record).GetAddress -} - -func ExampleSYNTH4Record_GetJSON() { - _ = (*SYNTH4Record).GetJSON -} - -func ExampleSYNTH4Record_GetNS() { - _ = (*SYNTH4Record).GetNS -} - -func ExampleSYNTH4Record_GetSize() { - _ = (*SYNTH4Record).GetSize -} - -func ExampleSYNTH4Record_GetType() { - _ = (*SYNTH4Record).GetType -} - -func ExampleSYNTH4Record_NS() { - _ = (*SYNTH4Record).NS -} - -func ExampleSYNTH4Record_Type() { - _ = (*SYNTH4Record).Type -} - -func ExampleSYNTH6Record_FromJSON() { - _ = (*SYNTH6Record).FromJSON -} - -func ExampleSYNTH6Record_GetAddress() { - _ = (*SYNTH6Record).GetAddress -} - -func ExampleSYNTH6Record_GetJSON() { - _ = (*SYNTH6Record).GetJSON -} - -func ExampleSYNTH6Record_GetNS() { - _ = (*SYNTH6Record).GetNS -} - -func ExampleSYNTH6Record_GetSize() { - _ = (*SYNTH6Record).GetSize -} - -func ExampleSYNTH6Record_GetType() { - _ = (*SYNTH6Record).GetType -} - -func ExampleSYNTH6Record_NS() { - _ = (*SYNTH6Record).NS -} - -func ExampleSYNTH6Record_Type() { - _ = (*SYNTH6Record).Type -} - -func ExampleService_Core() { - _ = (*Service).Core -} - -func ExampleService_GetCore() { - _ = (*Service).GetCore -} - -func ExampleService_GetHash() { - _ = (*Service).GetHash -} - -func ExampleService_GetHashBinary() { - _ = (*Service).GetHashBinary -} - -func ExampleService_GetHashByBinary() { - _ = (*Service).GetHashByBinary -} - -func ExampleService_GetHashByName() { - _ = (*Service).GetHashByName -} - -func ExampleService_GetHashByString() { - _ = (*Service).GetHashByString -} - -func ExampleService_GetHashName() { - _ = (*Service).GetHashName -} - -func ExampleService_GetHashString() { - _ = (*Service).GetHashString -} - -func ExampleService_GetResolve() { - _ = (*Service).GetResolve -} - -func ExampleService_GetResolveBinary() { - _ = (*Service).GetResolveBinary -} - -func ExampleService_GetResolveByBinary() { - _ = (*Service).GetResolveByBinary -} - -func ExampleService_GetResolveByName() { - _ = (*Service).GetResolveByName -} - -func ExampleService_GetResolveByString() { - _ = (*Service).GetResolveByString -} - -func ExampleService_GetResolveName() { - _ = (*Service).GetResolveName -} - -func ExampleService_GetResolveString() { - _ = (*Service).GetResolveString -} - -func ExampleService_GetServiceName() { - _ = (*Service).GetServiceName -} - -func ExampleService_GetVerify() { - _ = (*Service).GetVerify -} - -func ExampleService_GetVerifyBinary() { - _ = (*Service).GetVerifyBinary -} - -func ExampleService_GetVerifyByBinary() { - _ = (*Service).GetVerifyByBinary -} - -func ExampleService_GetVerifyByName() { - _ = (*Service).GetVerifyByName -} - -func ExampleService_GetVerifyByString() { - _ = (*Service).GetVerifyByString -} - -func ExampleService_GetVerifyName() { - _ = (*Service).GetVerifyName -} - -func ExampleService_GetVerifyString() { - _ = (*Service).GetVerifyString -} - -func ExampleService_Hash() { - _ = (*Service).Hash -} - -func ExampleService_HashBinary() { - _ = (*Service).HashBinary -} - -func ExampleService_HashByBinary() { - _ = (*Service).HashByBinary -} - -func ExampleService_HashByName() { - _ = (*Service).HashByName -} - -func ExampleService_HashByString() { - _ = (*Service).HashByString -} - -func ExampleService_HashName() { - _ = (*Service).HashName -} - -func ExampleService_HashString() { - _ = (*Service).HashString -} - -func ExampleService_Resolve() { - _ = (*Service).Resolve -} - -func ExampleService_ResolveBinary() { - _ = (*Service).ResolveBinary -} - -func ExampleService_ResolveByBinary() { - _ = (*Service).ResolveByBinary -} - -func ExampleService_ResolveByName() { - _ = (*Service).ResolveByName -} - -func ExampleService_ResolveByString() { - _ = (*Service).ResolveByString -} - -func ExampleService_ResolveName() { - _ = (*Service).ResolveName -} - -func ExampleService_ResolveString() { - _ = (*Service).ResolveString -} - -func ExampleService_ServiceName() { - _ = (*Service).ServiceName -} - -func ExampleService_Verify() { - _ = (*Service).Verify -} - -func ExampleService_VerifyBinary() { - _ = (*Service).VerifyBinary -} - -func ExampleService_VerifyByBinary() { - _ = (*Service).VerifyByBinary -} - -func ExampleService_VerifyByName() { - _ = (*Service).VerifyByName -} - -func ExampleService_VerifyByString() { - _ = (*Service).VerifyByString -} - -func ExampleService_VerifyName() { - _ = (*Service).VerifyName -} - -func ExampleService_VerifyString() { - _ = (*Service).VerifyString -} - -func ExampleTXTRecord_FromJSON() { - _ = (*TXTRecord).FromJSON -} - -func ExampleTXTRecord_GetEntries() { - _ = (*TXTRecord).GetEntries -} - -func ExampleTXTRecord_GetJSON() { - _ = (*TXTRecord).GetJSON -} - -func ExampleTXTRecord_GetSize() { - _ = (*TXTRecord).GetSize -} - -func ExampleTXTRecord_GetType() { - _ = (*TXTRecord).GetType -} - -func ExampleTXTRecord_Type() { - _ = (*TXTRecord).Type -} - -func ExampleVerify() { - _ = Verify -} - -func ExampleVerifyBinary() { - _ = VerifyBinary -} - -func ExampleVerifyByBinary() { - _ = VerifyByBinary -} - -func ExampleVerifyByName() { - _ = VerifyByName -} - -func ExampleVerifyByString() { - _ = VerifyByString -} - -func ExampleVerifyName() { - _ = VerifyName -} - -func ExampleWithCore() { - _ = WithCore -} diff --git a/pkg/primitives/claim_example_test.go b/pkg/primitives/claim_example_test.go index 748ae41..fc7d244 100644 --- a/pkg/primitives/claim_example_test.go +++ b/pkg/primitives/claim_example_test.go @@ -4,8 +4,7 @@ package primitives import "fmt" -func ExampleNewClaim_good() { +func ExampleNewClaim() { fmt.Println(NewClaim().GetSize()) // Output: 2 } - diff --git a/pkg/primitives/covenant_binary_example_test.go b/pkg/primitives/covenant_binary_example_test.go index e88fdbc..3859712 100644 --- a/pkg/primitives/covenant_binary_example_test.go +++ b/pkg/primitives/covenant_binary_example_test.go @@ -4,9 +4,8 @@ package primitives import "fmt" -func ExampleCovenant_MarshalBinary_good() { +func ExampleCovenant_MarshalBinary() { raw, _ := Covenant{}.MarshalBinary() fmt.Println(len(raw)) // Output: 2 } - diff --git a/pkg/primitives/covenant_items_example_test.go b/pkg/primitives/covenant_items_example_test.go index f534b4e..d02cfd7 100644 --- a/pkg/primitives/covenant_items_example_test.go +++ b/pkg/primitives/covenant_items_example_test.go @@ -4,10 +4,9 @@ package primitives import "fmt" -func ExampleCovenant_SetOpen_good() { +func ExampleCovenant_SetOpen() { var cov Covenant cov.SetOpen(Hash{}, []byte("example")) fmt.Println(cov.Len()) // Output: 3 } - diff --git a/pkg/primitives/covenant_json_example_test.go b/pkg/primitives/covenant_json_example_test.go index dc9771d..c0934fc 100644 --- a/pkg/primitives/covenant_json_example_test.go +++ b/pkg/primitives/covenant_json_example_test.go @@ -4,7 +4,7 @@ package primitives import "fmt" -func ExampleCovenant_GetJSON_good() { +func ExampleCovenant_GetJSON() { json := Covenant{Type: covenantTypeOpen, Items: [][]byte{{0x01, 0x02}}}.GetJSON() fmt.Println(json.Action) // Output: OPEN diff --git a/pkg/primitives/invitem_example_test.go b/pkg/primitives/invitem_example_test.go index 4a7ac1d..129fc5a 100644 --- a/pkg/primitives/invitem_example_test.go +++ b/pkg/primitives/invitem_example_test.go @@ -4,8 +4,7 @@ package primitives import "fmt" -func ExampleNewInvItem_good() { +func ExampleNewInvItem() { fmt.Println(NewInvItem(InvTypeClaim, Hash{}).IsClaim()) // Output: true } - diff --git a/pkg/primitives/namedelta_example_test.go b/pkg/primitives/namedelta_example_test.go index 618051a..9b9ee65 100644 --- a/pkg/primitives/namedelta_example_test.go +++ b/pkg/primitives/namedelta_example_test.go @@ -4,8 +4,7 @@ package primitives import "fmt" -func ExampleNameDelta_IsNull_good() { +func ExampleNameDelta_IsNull() { fmt.Println(NameDelta{}.IsNull()) // Output: true } - diff --git a/pkg/primitives/namestate_binary_example_test.go b/pkg/primitives/namestate_binary_example_test.go index 50805dc..0e2648d 100644 --- a/pkg/primitives/namestate_binary_example_test.go +++ b/pkg/primitives/namestate_binary_example_test.go @@ -6,7 +6,7 @@ import ( "fmt" ) -func ExampleNameState_MarshalBinary_good() { +func ExampleNameState_MarshalBinary() { raw, _ := NameState{Name: []byte("example")}.MarshalBinary() fmt.Println(len(raw) > 0) // Output: true diff --git a/pkg/primitives/namestate_example_test.go b/pkg/primitives/namestate_example_test.go index 71b5ca5..e8cddfc 100644 --- a/pkg/primitives/namestate_example_test.go +++ b/pkg/primitives/namestate_example_test.go @@ -4,9 +4,8 @@ package primitives import "fmt" -func ExampleNameState_Clone_good() { +func ExampleNameState_Clone() { ns := NameState{Name: []byte("example")} fmt.Println(string(ns.Clone().Name)) // Output: example } - diff --git a/pkg/primitives/namestate_json_example_test.go b/pkg/primitives/namestate_json_example_test.go index fa83827..b5865b6 100644 --- a/pkg/primitives/namestate_json_example_test.go +++ b/pkg/primitives/namestate_json_example_test.go @@ -4,7 +4,7 @@ package primitives import "fmt" -func ExampleNameState_GetJSON_good() { +func ExampleNameState_GetJSON() { json := NameState{ Name: []byte("example"), NameHash: Hash{0x01}, diff --git a/pkg/primitives/namestate_state_example_test.go b/pkg/primitives/namestate_state_example_test.go index 39b406a..92fb31d 100644 --- a/pkg/primitives/namestate_state_example_test.go +++ b/pkg/primitives/namestate_state_example_test.go @@ -4,9 +4,8 @@ package primitives import "fmt" -func ExampleNameState_IsOpening_good() { +func ExampleNameState_IsOpening() { ns := NameState{Height: 10} fmt.Println(ns.IsOpening(10, NameStateRules{TreeInterval: 5})) // Output: true } - diff --git a/pkg/primitives/namestate_stats_example_test.go b/pkg/primitives/namestate_stats_example_test.go index 418b6c3..b90a850 100644 --- a/pkg/primitives/namestate_stats_example_test.go +++ b/pkg/primitives/namestate_stats_example_test.go @@ -4,7 +4,7 @@ package primitives import "fmt" -func ExampleNameState_ToStats_good() { +func ExampleNameState_ToStats() { stats := NameState{ Name: []byte("example"), Height: 10, diff --git a/pkg/primitives/outpoint_example_test.go b/pkg/primitives/outpoint_example_test.go index 6808658..d22df68 100644 --- a/pkg/primitives/outpoint_example_test.go +++ b/pkg/primitives/outpoint_example_test.go @@ -4,7 +4,7 @@ package primitives import "fmt" -func ExampleNewOutpoint_good() { +func ExampleNewOutpoint() { fmt.Println(NewOutpoint().IsNull()) // Output: true } diff --git a/pkg/primitives/outpoint_json_example_test.go b/pkg/primitives/outpoint_json_example_test.go index 79a83a3..d50f06f 100644 --- a/pkg/primitives/outpoint_json_example_test.go +++ b/pkg/primitives/outpoint_json_example_test.go @@ -4,7 +4,7 @@ package primitives import "fmt" -func ExampleOutpoint_GetJSON_good() { +func ExampleOutpoint_GetJSON() { fmt.Println(NewOutpoint().GetJSON().Index) // Output: 4294967295 } diff --git a/pkg/primitives/types_example_test.go b/pkg/primitives/types_example_test.go index 2f28bb5..ebdf446 100644 --- a/pkg/primitives/types_example_test.go +++ b/pkg/primitives/types_example_test.go @@ -4,8 +4,7 @@ package primitives import "fmt" -func ExampleCovenant_IsName_good() { +func ExampleCovenant_IsName() { fmt.Println(Covenant{Type: covenantTypeOpen}.IsName()) // Output: true } - diff --git a/pkg/primitives/view_example_test.go b/pkg/primitives/view_example_test.go index b4c08e0..8bff011 100644 --- a/pkg/primitives/view_example_test.go +++ b/pkg/primitives/view_example_test.go @@ -4,10 +4,9 @@ package primitives import "fmt" -func ExampleNewNameView_good() { +func ExampleNewNameView() { view := NewNameView() ns, _ := view.GetNameStateSync(nil, Hash{}) fmt.Println(ns.NameHash == (Hash{})) // Output: true } - diff --git a/pkg/primitives/zz_codex_examples_example_test.go b/pkg/primitives/zz_codex_examples_example_test.go deleted file mode 100644 index 292e7fd..0000000 --- a/pkg/primitives/zz_codex_examples_example_test.go +++ /dev/null @@ -1,699 +0,0 @@ -package primitives - -// Code generated by Codex. DO NOT EDIT. - -func ExampleAddress_Clone() { - _ = (*Address).Clone -} - -func ExampleAddress_Compare() { - _ = (*Address).Compare -} - -func ExampleAddress_Equals() { - _ = (*Address).Equals -} - -func ExampleAddress_GetSize() { - _ = (*Address).GetSize -} - -func ExampleAddress_Inject() { - _ = (*Address).Inject -} - -func ExampleAddress_IsNull() { - _ = (*Address).IsNull -} - -func ExampleAddress_IsNulldata() { - _ = (*Address).IsNulldata -} - -func ExampleAddress_IsPubkeyHash() { - _ = (*Address).IsPubkeyHash -} - -func ExampleAddress_IsScripthash() { - _ = (*Address).IsScripthash -} - -func ExampleAddress_IsUnknown() { - _ = (*Address).IsUnknown -} - -func ExampleAddress_IsUnspendable() { - _ = (*Address).IsUnspendable -} - -func ExampleAddress_IsValid() { - _ = (*Address).IsValid -} - -func ExampleClaim_Clone() { - _ = (*Claim).Clone -} - -func ExampleClaim_FromBlob() { - _ = (*Claim).FromBlob -} - -func ExampleClaim_GetBlob() { - _ = (*Claim).GetBlob -} - -func ExampleClaim_GetFromBlob() { - _ = (*Claim).GetFromBlob -} - -func ExampleClaim_GetHash() { - _ = (*Claim).GetHash -} - -func ExampleClaim_GetHashHex() { - _ = (*Claim).GetHashHex -} - -func ExampleClaim_GetSize() { - _ = (*Claim).GetSize -} - -func ExampleClaim_GetToBlob() { - _ = (*Claim).GetToBlob -} - -func ExampleClaim_GetToInv() { - _ = (*Claim).GetToInv -} - -func ExampleClaim_GetVirtualSize() { - _ = (*Claim).GetVirtualSize -} - -func ExampleClaim_GetWeight() { - _ = (*Claim).GetWeight -} - -func ExampleClaim_Hash() { - _ = (*Claim).Hash -} - -func ExampleClaim_HashHex() { - _ = (*Claim).HashHex -} - -func ExampleClaim_MarshalBinary() { - _ = (*Claim).MarshalBinary -} - -func ExampleClaim_Refresh() { - _ = (*Claim).Refresh -} - -func ExampleClaim_ToBlob() { - _ = (*Claim).ToBlob -} - -func ExampleClaim_ToInv() { - _ = (*Claim).ToInv -} - -func ExampleClaim_UnmarshalBinary() { - _ = (*Claim).UnmarshalBinary -} - -func ExampleClaim_VirtualSize() { - _ = (*Claim).VirtualSize -} - -func ExampleClaim_Weight() { - _ = (*Claim).Weight -} - -func ExampleCovenant_Clone() { - _ = (*Covenant).Clone -} - -func ExampleCovenant_FromArray() { - _ = (*Covenant).FromArray -} - -func ExampleCovenant_FromJSON() { - _ = (*Covenant).FromJSON -} - -func ExampleCovenant_Get() { - _ = (*Covenant).Get -} - -func ExampleCovenant_GetHash() { - _ = (*Covenant).GetHash -} - -func ExampleCovenant_GetJSON() { - _ = (*Covenant).GetJSON -} - -func ExampleCovenant_GetSize() { - _ = (*Covenant).GetSize -} - -func ExampleCovenant_GetString() { - _ = (*Covenant).GetString -} - -func ExampleCovenant_GetU32() { - _ = (*Covenant).GetU32 -} - -func ExampleCovenant_GetU8() { - _ = (*Covenant).GetU8 -} - -func ExampleCovenant_GetVarSize() { - _ = (*Covenant).GetVarSize -} - -func ExampleCovenant_IndexOf() { - _ = (*Covenant).IndexOf -} - -func ExampleCovenant_Inject() { - _ = (*Covenant).Inject -} - -func ExampleCovenant_IsBid() { - _ = (*Covenant).IsBid -} - -func ExampleCovenant_IsClaim() { - _ = (*Covenant).IsClaim -} - -func ExampleCovenant_IsDustworthy() { - _ = (*Covenant).IsDustworthy -} - -func ExampleCovenant_IsFinalize() { - _ = (*Covenant).IsFinalize -} - -func ExampleCovenant_IsKnown() { - _ = (*Covenant).IsKnown -} - -func ExampleCovenant_IsLinked() { - _ = (*Covenant).IsLinked -} - -func ExampleCovenant_IsName() { - _ = (*Covenant).IsName -} - -func ExampleCovenant_IsNone() { - _ = (*Covenant).IsNone -} - -func ExampleCovenant_IsNonspendable() { - _ = (*Covenant).IsNonspendable -} - -func ExampleCovenant_IsOpen() { - _ = (*Covenant).IsOpen -} - -func ExampleCovenant_IsRedeem() { - _ = (*Covenant).IsRedeem -} - -func ExampleCovenant_IsRegister() { - _ = (*Covenant).IsRegister -} - -func ExampleCovenant_IsRenew() { - _ = (*Covenant).IsRenew -} - -func ExampleCovenant_IsReveal() { - _ = (*Covenant).IsReveal -} - -func ExampleCovenant_IsRevoke() { - _ = (*Covenant).IsRevoke -} - -func ExampleCovenant_IsTransfer() { - _ = (*Covenant).IsTransfer -} - -func ExampleCovenant_IsUnknown() { - _ = (*Covenant).IsUnknown -} - -func ExampleCovenant_IsUnspendable() { - _ = (*Covenant).IsUnspendable -} - -func ExampleCovenant_IsUpdate() { - _ = (*Covenant).IsUpdate -} - -func ExampleCovenant_Len() { - _ = (*Covenant).Len -} - -func ExampleCovenant_MarshalBinary() { - _ = (*Covenant).MarshalBinary -} - -func ExampleCovenant_Push() { - _ = (*Covenant).Push -} - -func ExampleCovenant_PushHash() { - _ = (*Covenant).PushHash -} - -func ExampleCovenant_PushString() { - _ = (*Covenant).PushString -} - -func ExampleCovenant_PushU32() { - _ = (*Covenant).PushU32 -} - -func ExampleCovenant_PushU8() { - _ = (*Covenant).PushU8 -} - -func ExampleCovenant_Set() { - _ = (*Covenant).Set -} - -func ExampleCovenant_SetBid() { - _ = (*Covenant).SetBid -} - -func ExampleCovenant_SetClaim() { - _ = (*Covenant).SetClaim -} - -func ExampleCovenant_SetFinalize() { - _ = (*Covenant).SetFinalize -} - -func ExampleCovenant_SetNone() { - _ = (*Covenant).SetNone -} - -func ExampleCovenant_SetOpen() { - _ = (*Covenant).SetOpen -} - -func ExampleCovenant_SetRedeem() { - _ = (*Covenant).SetRedeem -} - -func ExampleCovenant_SetRegister() { - _ = (*Covenant).SetRegister -} - -func ExampleCovenant_SetRenew() { - _ = (*Covenant).SetRenew -} - -func ExampleCovenant_SetReveal() { - _ = (*Covenant).SetReveal -} - -func ExampleCovenant_SetRevoke() { - _ = (*Covenant).SetRevoke -} - -func ExampleCovenant_SetTransfer() { - _ = (*Covenant).SetTransfer -} - -func ExampleCovenant_SetUpdate() { - _ = (*Covenant).SetUpdate -} - -func ExampleCovenant_ToArray() { - _ = (*Covenant).ToArray -} - -func ExampleCovenant_UnmarshalBinary() { - _ = (*Covenant).UnmarshalBinary -} - -func ExampleGetNewClaim() { - _ = GetNewClaim -} - -func ExampleGetNewInvItem() { - _ = GetNewInvItem -} - -func ExampleInput_IsCoinbase() { - _ = (*Input).IsCoinbase -} - -func ExampleInput_IsFinal() { - _ = (*Input).IsFinal -} - -func ExampleInvItem_GetSize() { - _ = (*InvItem).GetSize -} - -func ExampleInvItem_IsAirdrop() { - _ = (*InvItem).IsAirdrop -} - -func ExampleInvItem_IsBlock() { - _ = (*InvItem).IsBlock -} - -func ExampleInvItem_IsClaim() { - _ = (*InvItem).IsClaim -} - -func ExampleInvItem_IsTX() { - _ = (*InvItem).IsTX -} - -func ExampleInvItem_MarshalBinary() { - _ = (*InvItem).MarshalBinary -} - -func ExampleInvItem_UnmarshalBinary() { - _ = (*InvItem).UnmarshalBinary -} - -func ExampleNameDelta_Clear() { - _ = (*NameDelta).Clear -} - -func ExampleNameDelta_Clone() { - _ = (*NameDelta).Clone -} - -func ExampleNameDelta_GetField() { - _ = (*NameDelta).GetField -} - -func ExampleNameDelta_GetSize() { - _ = (*NameDelta).GetSize -} - -func ExampleNameDelta_Inject() { - _ = (*NameDelta).Inject -} - -func ExampleNameDelta_IsNull() { - _ = (*NameDelta).IsNull -} - -func ExampleNameDelta_MarshalBinary() { - _ = (*NameDelta).MarshalBinary -} - -func ExampleNameDelta_UnmarshalBinary() { - _ = (*NameDelta).UnmarshalBinary -} - -func ExampleNameStateStatus_String() { - _ = (*NameStateStatus).String -} - -func ExampleNameState_ApplyState() { - _ = (*NameState).ApplyState -} - -func ExampleNameState_Clear() { - _ = (*NameState).Clear -} - -func ExampleNameState_Clone() { - _ = (*NameState).Clone -} - -func ExampleNameState_Delta() { - _ = (*NameState).Delta -} - -func ExampleNameState_Format() { - _ = (*NameState).Format -} - -func ExampleNameState_FromJSON() { - _ = (*NameState).FromJSON -} - -func ExampleNameState_GetApplyState() { - _ = (*NameState).GetApplyState -} - -func ExampleNameState_GetClear() { - _ = (*NameState).GetClear -} - -func ExampleNameState_GetClone() { - _ = (*NameState).GetClone -} - -func ExampleNameState_GetDelta() { - _ = (*NameState).GetDelta -} - -func ExampleNameState_GetFormat() { - _ = (*NameState).GetFormat -} - -func ExampleNameState_GetFromJSON() { - _ = (*NameState).GetFromJSON -} - -func ExampleNameState_GetHasDelta() { - _ = (*NameState).GetHasDelta -} - -func ExampleNameState_GetInject() { - _ = (*NameState).GetInject -} - -func ExampleNameState_GetIsBidding() { - _ = (*NameState).GetIsBidding -} - -func ExampleNameState_GetIsClaimable() { - _ = (*NameState).GetIsClaimable -} - -func ExampleNameState_GetIsClosed() { - _ = (*NameState).GetIsClosed -} - -func ExampleNameState_GetIsExpired() { - _ = (*NameState).GetIsExpired -} - -func ExampleNameState_GetIsLocked() { - _ = (*NameState).GetIsLocked -} - -func ExampleNameState_GetIsNull() { - _ = (*NameState).GetIsNull -} - -func ExampleNameState_GetIsOpening() { - _ = (*NameState).GetIsOpening -} - -func ExampleNameState_GetIsRedeemable() { - _ = (*NameState).GetIsRedeemable -} - -func ExampleNameState_GetIsReveal() { - _ = (*NameState).GetIsReveal -} - -func ExampleNameState_GetIsRevoked() { - _ = (*NameState).GetIsRevoked -} - -func ExampleNameState_GetJSON() { - _ = (*NameState).GetJSON -} - -func ExampleNameState_GetMaybeExpire() { - _ = (*NameState).GetMaybeExpire -} - -func ExampleNameState_GetReset() { - _ = (*NameState).GetReset -} - -func ExampleNameState_GetSet() { - _ = (*NameState).GetSet -} - -func ExampleNameState_GetSize() { - _ = (*NameState).GetSize -} - -func ExampleNameState_GetState() { - _ = (*NameState).GetState -} - -func ExampleNameState_GetToStats() { - _ = (*NameState).GetToStats -} - -func ExampleNameState_HasDelta() { - _ = (*NameState).HasDelta -} - -func ExampleNameState_Inject() { - _ = (*NameState).Inject -} - -func ExampleNameState_IsBidding() { - _ = (*NameState).IsBidding -} - -func ExampleNameState_IsClaimable() { - _ = (*NameState).IsClaimable -} - -func ExampleNameState_IsClosed() { - _ = (*NameState).IsClosed -} - -func ExampleNameState_IsExpired() { - _ = (*NameState).IsExpired -} - -func ExampleNameState_IsLocked() { - _ = (*NameState).IsLocked -} - -func ExampleNameState_IsNull() { - _ = (*NameState).IsNull -} - -func ExampleNameState_IsOpening() { - _ = (*NameState).IsOpening -} - -func ExampleNameState_IsRedeemable() { - _ = (*NameState).IsRedeemable -} - -func ExampleNameState_IsReveal() { - _ = (*NameState).IsReveal -} - -func ExampleNameState_IsRevoked() { - _ = (*NameState).IsRevoked -} - -func ExampleNameState_MarshalBinary() { - _ = (*NameState).MarshalBinary -} - -func ExampleNameState_MaybeExpire() { - _ = (*NameState).MaybeExpire -} - -func ExampleNameState_Reset() { - _ = (*NameState).Reset -} - -func ExampleNameState_Set() { - _ = (*NameState).Set -} - -func ExampleNameState_State() { - _ = (*NameState).State -} - -func ExampleNameState_ToStats() { - _ = (*NameState).ToStats -} - -func ExampleNameState_UnmarshalBinary() { - _ = (*NameState).UnmarshalBinary -} - -func ExampleNameUndo_FromView() { - _ = (*NameUndo).FromView -} - -func ExampleNameUndo_GetSize() { - _ = (*NameUndo).GetSize -} - -func ExampleNameUndo_MarshalBinary() { - _ = (*NameUndo).MarshalBinary -} - -func ExampleNameUndo_UnmarshalBinary() { - _ = (*NameUndo).UnmarshalBinary -} - -func ExampleNameView_GetNameState() { - _ = (*NameView).GetNameState -} - -func ExampleNameView_GetNameStateSync() { - _ = (*NameView).GetNameStateSync -} - -func ExampleNameView_ToNameUndo() { - _ = (*NameView).ToNameUndo -} - -func ExampleOutpoint_Clone() { - _ = (*Outpoint).Clone -} - -func ExampleOutpoint_Compare() { - _ = (*Outpoint).Compare -} - -func ExampleOutpoint_Equals() { - _ = (*Outpoint).Equals -} - -func ExampleOutpoint_FromJSON() { - _ = (*Outpoint).FromJSON -} - -func ExampleOutpoint_GetJSON() { - _ = (*Outpoint).GetJSON -} - -func ExampleOutpoint_GetSize() { - _ = (*Outpoint).GetSize -} - -func ExampleOutpoint_Inject() { - _ = (*Outpoint).Inject -} - -func ExampleOutpoint_IsNull() { - _ = (*Outpoint).IsNull -} - -func ExampleOutpoint_MarshalBinary() { - _ = (*Outpoint).MarshalBinary -} - -func ExampleOutpoint_UnmarshalBinary() { - _ = (*Outpoint).UnmarshalBinary -} - -func ExampleOutput_IsUnspendable() { - _ = (*Output).IsUnspendable -} diff --git a/zz_codex_examples_example_test.go b/zz_codex_examples_example_test.go deleted file mode 100644 index 26d1448..0000000 --- a/zz_codex_examples_example_test.go +++ /dev/null @@ -1,1959 +0,0 @@ -package lns - -// Code generated by Codex. DO NOT EDIT. - -func ExampleAddNames() { - _ = AddNames -} - -func ExampleBlind() { - _ = Blind -} - -func ExampleCountOpens() { - _ = CountOpens -} - -func ExampleCountRenewals() { - _ = CountRenewals -} - -func ExampleCountUpdates() { - _ = CountUpdates -} - -func ExampleCreate() { - _ = Create -} - -func ExampleDecodeResource() { - _ = DecodeResource -} - -func ExampleDefaultLockedCatalog() { - _ = DefaultLockedCatalog -} - -func ExampleDefaultReservedCatalog() { - _ = DefaultReservedCatalog -} - -func ExampleGetAddNames() { - _ = GetAddNames -} - -func ExampleGetBlacklist() { - _ = GetBlacklist -} - -func ExampleGetBlind() { - _ = GetBlind -} - -func ExampleGetCountOpens() { - _ = GetCountOpens -} - -func ExampleGetCountRenewals() { - _ = GetCountRenewals -} - -func ExampleGetCountUpdates() { - _ = GetCountUpdates -} - -func ExampleGetCovenantMaxSize() { - _ = GetCovenantMaxSize -} - -func ExampleGetCreate() { - _ = GetCreate -} - -func ExampleGetDecodeResource() { - _ = GetDecodeResource -} - -func ExampleGetDefaultLockedCatalog() { - _ = GetDefaultLockedCatalog -} - -func ExampleGetDefaultReservedCatalog() { - _ = GetDefaultReservedCatalog -} - -func ExampleGetDefaultTTL() { - _ = GetDefaultTTL -} - -func ExampleGetDummy() { - _ = GetDummy -} - -func ExampleGetGrindName() { - _ = GetGrindName -} - -func ExampleGetHSTypes() { - _ = GetHSTypes -} - -func ExampleGetHSTypesByVal() { - _ = GetHSTypesByVal -} - -func ExampleGetHasLocked() { - _ = GetHasLocked -} - -func ExampleGetHasLockedBinary() { - _ = GetHasLockedBinary -} - -func ExampleGetHasLockedByBinary() { - _ = GetHasLockedByBinary -} - -func ExampleGetHasLockedByHash() { - _ = GetHasLockedByHash -} - -func ExampleGetHasLockedByName() { - _ = GetHasLockedByName -} - -func ExampleGetHasLockedByString() { - _ = GetHasLockedByString -} - -func ExampleGetHasLockedCatalog() { - _ = GetHasLockedCatalog -} - -func ExampleGetHasLockedHash() { - _ = GetHasLockedHash -} - -func ExampleGetHasLockedName() { - _ = GetHasLockedName -} - -func ExampleGetHasLockedString() { - _ = GetHasLockedString -} - -func ExampleGetHasLookupCatalogName() { - _ = GetHasLookupCatalogName[any] -} - -func ExampleGetHasNames() { - _ = GetHasNames -} - -func ExampleGetHasReserved() { - _ = GetHasReserved -} - -func ExampleGetHasReservedBinary() { - _ = GetHasReservedBinary -} - -func ExampleGetHasReservedByBinary() { - _ = GetHasReservedByBinary -} - -func ExampleGetHasReservedByHash() { - _ = GetHasReservedByHash -} - -func ExampleGetHasReservedByName() { - _ = GetHasReservedByName -} - -func ExampleGetHasReservedByString() { - _ = GetHasReservedByString -} - -func ExampleGetHasReservedCatalog() { - _ = GetHasReservedCatalog -} - -func ExampleGetHasReservedHash() { - _ = GetHasReservedHash -} - -func ExampleGetHasReservedName() { - _ = GetHasReservedName -} - -func ExampleGetHasReservedString() { - _ = GetHasReservedString -} - -func ExampleGetHasRollout() { - _ = GetHasRollout -} - -func ExampleGetHasSaneCovenants() { - _ = GetHasSaneCovenants -} - -func ExampleGetHash() { - _ = GetHash -} - -func ExampleGetHashBinary() { - _ = GetHashBinary -} - -func ExampleGetHashByBinary() { - _ = GetHashByBinary -} - -func ExampleGetHashByName() { - _ = GetHashByName -} - -func ExampleGetHashByString() { - _ = GetHashByString -} - -func ExampleGetHashName() { - _ = GetHashName -} - -func ExampleGetHashString() { - _ = GetHashString -} - -func ExampleGetIsKnown() { - _ = GetIsKnown -} - -func ExampleGetIsLinked() { - _ = GetIsLinked -} - -func ExampleGetIsLockedUp() { - _ = GetIsLockedUp -} - -func ExampleGetIsName() { - _ = GetIsName -} - -func ExampleGetIsReserved() { - _ = GetIsReserved -} - -func ExampleGetLocked() { - _ = GetLocked -} - -func ExampleGetLockedBinary() { - _ = GetLockedBinary -} - -func ExampleGetLockedByBinary() { - _ = GetLockedByBinary -} - -func ExampleGetLockedByHash() { - _ = GetLockedByHash -} - -func ExampleGetLockedByName() { - _ = GetLockedByName -} - -func ExampleGetLockedByString() { - _ = GetLockedByString -} - -func ExampleGetLockedCatalog() { - _ = GetLockedCatalog -} - -func ExampleGetLockedEntries() { - _ = GetLockedEntries -} - -func ExampleGetLockedHash() { - _ = GetLockedHash -} - -func ExampleGetLockedKeys() { - _ = GetLockedKeys -} - -func ExampleGetLockedName() { - _ = GetLockedName -} - -func ExampleGetLockedPrefixSize() { - _ = GetLockedPrefixSize -} - -func ExampleGetLockedSize() { - _ = GetLockedSize -} - -func ExampleGetLockedString() { - _ = GetLockedString -} - -func ExampleGetLockedValues() { - _ = GetLockedValues -} - -func ExampleGetLookupCatalogName() { - _ = GetLookupCatalogName[any] -} - -func ExampleGetMandatoryVerifyCovenantFlags() { - _ = GetMandatoryVerifyCovenantFlags -} - -func ExampleGetMaxCovenantSize() { - _ = GetMaxCovenantSize -} - -func ExampleGetMaxNameSize() { - _ = GetMaxNameSize -} - -func ExampleGetMaxResourceSize() { - _ = GetMaxResourceSize -} - -func ExampleGetNameValue() { - _ = GetNameValue -} - -func ExampleGetNewClaim() { - _ = GetNewClaim -} - -func ExampleGetNewInvItem() { - _ = GetNewInvItem -} - -func ExampleGetNewNameView() { - _ = GetNewNameView -} - -func ExampleGetNewOutpoint() { - _ = GetNewOutpoint -} - -func ExampleGetNewResource() { - _ = GetNewResource -} - -func ExampleGetNewService() { - _ = GetNewService -} - -func ExampleGetNewServiceWithOptions() { - _ = GetNewServiceWithOptions -} - -func ExampleGetNextName() { - _ = GetNextName -} - -func ExampleGetPrefixSize() { - _ = GetPrefixSize -} - -func ExampleGetPrevName() { - _ = GetPrevName -} - -func ExampleGetRegister() { - _ = GetRegister -} - -func ExampleGetRegisterWithOptions() { - _ = GetRegisterWithOptions -} - -func ExampleGetRemoveNames() { - _ = GetRemoveNames -} - -func ExampleGetReserved() { - _ = GetReserved -} - -func ExampleGetReservedBinary() { - _ = GetReservedBinary -} - -func ExampleGetReservedByBinary() { - _ = GetReservedByBinary -} - -func ExampleGetReservedByHash() { - _ = GetReservedByHash -} - -func ExampleGetReservedByName() { - _ = GetReservedByName -} - -func ExampleGetReservedByString() { - _ = GetReservedByString -} - -func ExampleGetReservedCatalog() { - _ = GetReservedCatalog -} - -func ExampleGetReservedEntries() { - _ = GetReservedEntries -} - -func ExampleGetReservedHash() { - _ = GetReservedHash -} - -func ExampleGetReservedKeys() { - _ = GetReservedKeys -} - -func ExampleGetReservedName() { - _ = GetReservedName -} - -func ExampleGetReservedNameValue() { - _ = GetReservedNameValue -} - -func ExampleGetReservedPrefixSize() { - _ = GetReservedPrefixSize -} - -func ExampleGetReservedRootValue() { - _ = GetReservedRootValue -} - -func ExampleGetReservedSize() { - _ = GetReservedSize -} - -func ExampleGetReservedString() { - _ = GetReservedString -} - -func ExampleGetReservedTopValue() { - _ = GetReservedTopValue -} - -func ExampleGetReservedValues() { - _ = GetReservedValues -} - -func ExampleGetResolve() { - _ = GetResolve -} - -func ExampleGetResolveBinary() { - _ = GetResolveBinary -} - -func ExampleGetResolveByBinary() { - _ = GetResolveByBinary -} - -func ExampleGetResolveByName() { - _ = GetResolveByName -} - -func ExampleGetResolveByString() { - _ = GetResolveByString -} - -func ExampleGetResolveName() { - _ = GetResolveName -} - -func ExampleGetResolveString() { - _ = GetResolveString -} - -func ExampleGetRollout() { - _ = GetRollout -} - -func ExampleGetRootValue() { - _ = GetRootValue -} - -func ExampleGetTopValue() { - _ = GetTopValue -} - -func ExampleGetTypeMapA() { - _ = GetTypeMapA -} - -func ExampleGetTypeMapAAAA() { - _ = GetTypeMapAAAA -} - -func ExampleGetTypeMapEmpty() { - _ = GetTypeMapEmpty -} - -func ExampleGetTypeMapNS() { - _ = GetTypeMapNS -} - -func ExampleGetTypeMapRoot() { - _ = GetTypeMapRoot -} - -func ExampleGetTypeMapTXT() { - _ = GetTypeMapTXT -} - -func ExampleGetTypeName() { - _ = GetTypeName -} - -func ExampleGetTypes() { - _ = GetTypes -} - -func ExampleGetTypesByVal() { - _ = GetTypesByVal -} - -func ExampleGetVerificationFlags() { - _ = GetVerificationFlags -} - -func ExampleGetVerificationFlagsByVal() { - _ = GetVerificationFlagsByVal -} - -func ExampleGetVerify() { - _ = GetVerify -} - -func ExampleGetVerifyBinary() { - _ = GetVerifyBinary -} - -func ExampleGetVerifyByBinary() { - _ = GetVerifyByBinary -} - -func ExampleGetVerifyByName() { - _ = GetVerifyByName -} - -func ExampleGetVerifyByString() { - _ = GetVerifyByString -} - -func ExampleGetVerifyCovenants() { - _ = GetVerifyCovenants -} - -func ExampleGetVerifyCovenantsHardened() { - _ = GetVerifyCovenantsHardened -} - -func ExampleGetVerifyCovenantsLockup() { - _ = GetVerifyCovenantsLockup -} - -func ExampleGetVerifyCovenantsNone() { - _ = GetVerifyCovenantsNone -} - -func ExampleGetVerifyName() { - _ = GetVerifyName -} - -func ExampleGetVerifyString() { - _ = GetVerifyString -} - -func ExampleGetWithCore() { - _ = GetWithCore -} - -func ExampleGetWithLockedCatalog() { - _ = GetWithLockedCatalog -} - -func ExampleGetWithReservedCatalog() { - _ = GetWithReservedCatalog -} - -func ExampleGrindName() { - _ = GrindName -} - -func ExampleHasLocked() { - _ = HasLocked -} - -func ExampleHasLockedBinary() { - _ = HasLockedBinary -} - -func ExampleHasLockedByBinary() { - _ = HasLockedByBinary -} - -func ExampleHasLockedByHash() { - _ = HasLockedByHash -} - -func ExampleHasLockedByName() { - _ = HasLockedByName -} - -func ExampleHasLockedByString() { - _ = HasLockedByString -} - -func ExampleHasLockedCatalog() { - _ = HasLockedCatalog -} - -func ExampleHasLockedHash() { - _ = HasLockedHash -} - -func ExampleHasLockedName() { - _ = HasLockedName -} - -func ExampleHasLockedString() { - _ = HasLockedString -} - -func ExampleHasLookupCatalogName() { - _ = HasLookupCatalogName[any] -} - -func ExampleHasNames() { - _ = HasNames -} - -func ExampleHasReserved() { - _ = HasReserved -} - -func ExampleHasReservedBinary() { - _ = HasReservedBinary -} - -func ExampleHasReservedByBinary() { - _ = HasReservedByBinary -} - -func ExampleHasReservedByHash() { - _ = HasReservedByHash -} - -func ExampleHasReservedByName() { - _ = HasReservedByName -} - -func ExampleHasReservedByString() { - _ = HasReservedByString -} - -func ExampleHasReservedCatalog() { - _ = HasReservedCatalog -} - -func ExampleHasReservedHash() { - _ = HasReservedHash -} - -func ExampleHasReservedName() { - _ = HasReservedName -} - -func ExampleHasReservedString() { - _ = HasReservedString -} - -func ExampleHasRollout() { - _ = HasRollout -} - -func ExampleHasSaneCovenants() { - _ = HasSaneCovenants -} - -func ExampleHash() { - _ = Hash -} - -func ExampleHashBinary() { - _ = HashBinary -} - -func ExampleHashByBinary() { - _ = HashByBinary -} - -func ExampleHashByName() { - _ = HashByName -} - -func ExampleHashByString() { - _ = HashByString -} - -func ExampleHashName() { - _ = HashName -} - -func ExampleHashString() { - _ = HashString -} - -func ExampleIsKnown() { - _ = IsKnown -} - -func ExampleIsLinked() { - _ = IsLinked -} - -func ExampleIsLockedUp() { - _ = IsLockedUp -} - -func ExampleIsName() { - _ = IsName -} - -func ExampleIsReserved() { - _ = IsReserved -} - -func ExampleLockedCatalog() { - _ = LockedCatalog -} - -func ExampleLockedEntries() { - _ = LockedEntries -} - -func ExampleLockedKeys() { - _ = LockedKeys -} - -func ExampleLockedPrefixSize() { - _ = LockedPrefixSize -} - -func ExampleLockedSize() { - _ = LockedSize -} - -func ExampleLockedValues() { - _ = LockedValues -} - -func ExampleLookupCatalogName() { - _ = LookupCatalogName[any] -} - -func ExampleNameValue() { - _ = NameValue -} - -func ExampleNewClaim() { - _ = NewClaim -} - -func ExampleNewInvItem() { - _ = NewInvItem -} - -func ExampleNewNameView() { - _ = NewNameView -} - -func ExampleNewOutpoint() { - _ = NewOutpoint -} - -func ExampleNewResource() { - _ = NewResource -} - -func ExampleNewService() { - _ = NewService -} - -func ExampleNewServiceWithOptions() { - _ = NewServiceWithOptions -} - -func ExampleNextName() { - _ = NextName -} - -func ExamplePrefixSize() { - _ = PrefixSize -} - -func ExamplePrevName() { - _ = PrevName -} - -func ExampleRegister() { - _ = Register -} - -func ExampleRegisterWithOptions() { - _ = RegisterWithOptions -} - -func ExampleRemoveNames() { - _ = RemoveNames -} - -func ExampleReservedCatalog() { - _ = ReservedCatalog -} - -func ExampleReservedEntries() { - _ = ReservedEntries -} - -func ExampleReservedKeys() { - _ = ReservedKeys -} - -func ExampleReservedNameValue() { - _ = ReservedNameValue -} - -func ExampleReservedPrefixSize() { - _ = ReservedPrefixSize -} - -func ExampleReservedRootValue() { - _ = ReservedRootValue -} - -func ExampleReservedSize() { - _ = ReservedSize -} - -func ExampleReservedTopValue() { - _ = ReservedTopValue -} - -func ExampleReservedValues() { - _ = ReservedValues -} - -func ExampleResolve() { - _ = Resolve -} - -func ExampleResolveBinary() { - _ = ResolveBinary -} - -func ExampleResolveByBinary() { - _ = ResolveByBinary -} - -func ExampleResolveByName() { - _ = ResolveByName -} - -func ExampleResolveByString() { - _ = ResolveByString -} - -func ExampleResolveName() { - _ = ResolveName -} - -func ExampleResolveString() { - _ = ResolveString -} - -func ExampleRootValue() { - _ = RootValue -} - -func ExampleService_AddNames() { - _ = (*Service).AddNames -} - -func ExampleService_Blacklist() { - _ = (*Service).Blacklist -} - -func ExampleService_Blind() { - _ = (*Service).Blind -} - -func ExampleService_Core() { - _ = (*Service).Core -} - -func ExampleService_CountOpens() { - _ = (*Service).CountOpens -} - -func ExampleService_CountRenewals() { - _ = (*Service).CountRenewals -} - -func ExampleService_CountUpdates() { - _ = (*Service).CountUpdates -} - -func ExampleService_CovenantMaxSize() { - _ = (*Service).CovenantMaxSize -} - -func ExampleService_Create() { - _ = (*Service).Create -} - -func ExampleService_DecodeResource() { - _ = (*Service).DecodeResource -} - -func ExampleService_DefaultLockedCatalog() { - _ = (*Service).DefaultLockedCatalog -} - -func ExampleService_DefaultReservedCatalog() { - _ = (*Service).DefaultReservedCatalog -} - -func ExampleService_DefaultTTL() { - _ = (*Service).DefaultTTL -} - -func ExampleService_Dummy() { - _ = (*Service).Dummy -} - -func ExampleService_GetAddNames() { - _ = (*Service).GetAddNames -} - -func ExampleService_GetBlacklist() { - _ = (*Service).GetBlacklist -} - -func ExampleService_GetBlind() { - _ = (*Service).GetBlind -} - -func ExampleService_GetCore() { - _ = (*Service).GetCore -} - -func ExampleService_GetCountOpens() { - _ = (*Service).GetCountOpens -} - -func ExampleService_GetCountRenewals() { - _ = (*Service).GetCountRenewals -} - -func ExampleService_GetCountUpdates() { - _ = (*Service).GetCountUpdates -} - -func ExampleService_GetCovenantMaxSize() { - _ = (*Service).GetCovenantMaxSize -} - -func ExampleService_GetCreate() { - _ = (*Service).GetCreate -} - -func ExampleService_GetDecodeResource() { - _ = (*Service).GetDecodeResource -} - -func ExampleService_GetDefaultLockedCatalog() { - _ = (*Service).GetDefaultLockedCatalog -} - -func ExampleService_GetDefaultReservedCatalog() { - _ = (*Service).GetDefaultReservedCatalog -} - -func ExampleService_GetDefaultTTL() { - _ = (*Service).GetDefaultTTL -} - -func ExampleService_GetDummy() { - _ = (*Service).GetDummy -} - -func ExampleService_GetGrindName() { - _ = (*Service).GetGrindName -} - -func ExampleService_GetHSTypes() { - _ = (*Service).GetHSTypes -} - -func ExampleService_GetHSTypesByVal() { - _ = (*Service).GetHSTypesByVal -} - -func ExampleService_GetHandleIPCEvents() { - _ = (*Service).GetHandleIPCEvents -} - -func ExampleService_GetHasLocked() { - _ = (*Service).GetHasLocked -} - -func ExampleService_GetHasLockedBinary() { - _ = (*Service).GetHasLockedBinary -} - -func ExampleService_GetHasLockedByBinary() { - _ = (*Service).GetHasLockedByBinary -} - -func ExampleService_GetHasLockedByHash() { - _ = (*Service).GetHasLockedByHash -} - -func ExampleService_GetHasLockedByName() { - _ = (*Service).GetHasLockedByName -} - -func ExampleService_GetHasLockedByString() { - _ = (*Service).GetHasLockedByString -} - -func ExampleService_GetHasLockedCatalog() { - _ = (*Service).GetHasLockedCatalog -} - -func ExampleService_GetHasLockedHash() { - _ = (*Service).GetHasLockedHash -} - -func ExampleService_GetHasLockedName() { - _ = (*Service).GetHasLockedName -} - -func ExampleService_GetHasLockedString() { - _ = (*Service).GetHasLockedString -} - -func ExampleService_GetHasLookupCatalogName() { - _ = (*Service).GetHasLookupCatalogName -} - -func ExampleService_GetHasNames() { - _ = (*Service).GetHasNames -} - -func ExampleService_GetHasReserved() { - _ = (*Service).GetHasReserved -} - -func ExampleService_GetHasReservedBinary() { - _ = (*Service).GetHasReservedBinary -} - -func ExampleService_GetHasReservedByBinary() { - _ = (*Service).GetHasReservedByBinary -} - -func ExampleService_GetHasReservedByHash() { - _ = (*Service).GetHasReservedByHash -} - -func ExampleService_GetHasReservedByName() { - _ = (*Service).GetHasReservedByName -} - -func ExampleService_GetHasReservedByString() { - _ = (*Service).GetHasReservedByString -} - -func ExampleService_GetHasReservedCatalog() { - _ = (*Service).GetHasReservedCatalog -} - -func ExampleService_GetHasReservedHash() { - _ = (*Service).GetHasReservedHash -} - -func ExampleService_GetHasReservedName() { - _ = (*Service).GetHasReservedName -} - -func ExampleService_GetHasReservedString() { - _ = (*Service).GetHasReservedString -} - -func ExampleService_GetHasRollout() { - _ = (*Service).GetHasRollout -} - -func ExampleService_GetHasSaneCovenants() { - _ = (*Service).GetHasSaneCovenants -} - -func ExampleService_GetHash() { - _ = (*Service).GetHash -} - -func ExampleService_GetHashBinary() { - _ = (*Service).GetHashBinary -} - -func ExampleService_GetHashByBinary() { - _ = (*Service).GetHashByBinary -} - -func ExampleService_GetHashByName() { - _ = (*Service).GetHashByName -} - -func ExampleService_GetHashByString() { - _ = (*Service).GetHashByString -} - -func ExampleService_GetHashName() { - _ = (*Service).GetHashName -} - -func ExampleService_GetHashString() { - _ = (*Service).GetHashString -} - -func ExampleService_GetIsKnown() { - _ = (*Service).GetIsKnown -} - -func ExampleService_GetIsLinked() { - _ = (*Service).GetIsLinked -} - -func ExampleService_GetIsLockedUp() { - _ = (*Service).GetIsLockedUp -} - -func ExampleService_GetIsName() { - _ = (*Service).GetIsName -} - -func ExampleService_GetIsReserved() { - _ = (*Service).GetIsReserved -} - -func ExampleService_GetLocked() { - _ = (*Service).GetLocked -} - -func ExampleService_GetLockedBinary() { - _ = (*Service).GetLockedBinary -} - -func ExampleService_GetLockedByBinary() { - _ = (*Service).GetLockedByBinary -} - -func ExampleService_GetLockedByHash() { - _ = (*Service).GetLockedByHash -} - -func ExampleService_GetLockedByName() { - _ = (*Service).GetLockedByName -} - -func ExampleService_GetLockedByString() { - _ = (*Service).GetLockedByString -} - -func ExampleService_GetLockedCatalog() { - _ = (*Service).GetLockedCatalog -} - -func ExampleService_GetLockedEntries() { - _ = (*Service).GetLockedEntries -} - -func ExampleService_GetLockedHash() { - _ = (*Service).GetLockedHash -} - -func ExampleService_GetLockedKeys() { - _ = (*Service).GetLockedKeys -} - -func ExampleService_GetLockedName() { - _ = (*Service).GetLockedName -} - -func ExampleService_GetLockedPrefixSize() { - _ = (*Service).GetLockedPrefixSize -} - -func ExampleService_GetLockedSize() { - _ = (*Service).GetLockedSize -} - -func ExampleService_GetLockedString() { - _ = (*Service).GetLockedString -} - -func ExampleService_GetLockedValues() { - _ = (*Service).GetLockedValues -} - -func ExampleService_GetLookupCatalogName() { - _ = (*Service).GetLookupCatalogName -} - -func ExampleService_GetMandatoryVerifyCovenantFlags() { - _ = (*Service).GetMandatoryVerifyCovenantFlags -} - -func ExampleService_GetMaxCovenantSize() { - _ = (*Service).GetMaxCovenantSize -} - -func ExampleService_GetMaxNameSize() { - _ = (*Service).GetMaxNameSize -} - -func ExampleService_GetMaxResourceSize() { - _ = (*Service).GetMaxResourceSize -} - -func ExampleService_GetNameValue() { - _ = (*Service).GetNameValue -} - -func ExampleService_GetNewClaim() { - _ = (*Service).GetNewClaim -} - -func ExampleService_GetNewNameView() { - _ = (*Service).GetNewNameView -} - -func ExampleService_GetNewOutpoint() { - _ = (*Service).GetNewOutpoint -} - -func ExampleService_GetNewResource() { - _ = (*Service).GetNewResource -} - -func ExampleService_GetNextName() { - _ = (*Service).GetNextName -} - -func ExampleService_GetOnShutdown() { - _ = (*Service).GetOnShutdown -} - -func ExampleService_GetOnStartup() { - _ = (*Service).GetOnStartup -} - -func ExampleService_GetPrefixSize() { - _ = (*Service).GetPrefixSize -} - -func ExampleService_GetPrevName() { - _ = (*Service).GetPrevName -} - -func ExampleService_GetRemoveNames() { - _ = (*Service).GetRemoveNames -} - -func ExampleService_GetReserved() { - _ = (*Service).GetReserved -} - -func ExampleService_GetReservedBinary() { - _ = (*Service).GetReservedBinary -} - -func ExampleService_GetReservedByBinary() { - _ = (*Service).GetReservedByBinary -} - -func ExampleService_GetReservedByHash() { - _ = (*Service).GetReservedByHash -} - -func ExampleService_GetReservedByName() { - _ = (*Service).GetReservedByName -} - -func ExampleService_GetReservedByString() { - _ = (*Service).GetReservedByString -} - -func ExampleService_GetReservedCatalog() { - _ = (*Service).GetReservedCatalog -} - -func ExampleService_GetReservedEntries() { - _ = (*Service).GetReservedEntries -} - -func ExampleService_GetReservedHash() { - _ = (*Service).GetReservedHash -} - -func ExampleService_GetReservedKeys() { - _ = (*Service).GetReservedKeys -} - -func ExampleService_GetReservedName() { - _ = (*Service).GetReservedName -} - -func ExampleService_GetReservedNameValue() { - _ = (*Service).GetReservedNameValue -} - -func ExampleService_GetReservedPrefixSize() { - _ = (*Service).GetReservedPrefixSize -} - -func ExampleService_GetReservedRootValue() { - _ = (*Service).GetReservedRootValue -} - -func ExampleService_GetReservedSize() { - _ = (*Service).GetReservedSize -} - -func ExampleService_GetReservedString() { - _ = (*Service).GetReservedString -} - -func ExampleService_GetReservedTopValue() { - _ = (*Service).GetReservedTopValue -} - -func ExampleService_GetReservedValues() { - _ = (*Service).GetReservedValues -} - -func ExampleService_GetResolve() { - _ = (*Service).GetResolve -} - -func ExampleService_GetResolveBinary() { - _ = (*Service).GetResolveBinary -} - -func ExampleService_GetResolveByBinary() { - _ = (*Service).GetResolveByBinary -} - -func ExampleService_GetResolveByName() { - _ = (*Service).GetResolveByName -} - -func ExampleService_GetResolveByString() { - _ = (*Service).GetResolveByString -} - -func ExampleService_GetResolveName() { - _ = (*Service).GetResolveName -} - -func ExampleService_GetResolveString() { - _ = (*Service).GetResolveString -} - -func ExampleService_GetRollout() { - _ = (*Service).GetRollout -} - -func ExampleService_GetRootValue() { - _ = (*Service).GetRootValue -} - -func ExampleService_GetServiceName() { - _ = (*Service).GetServiceName -} - -func ExampleService_GetTopValue() { - _ = (*Service).GetTopValue -} - -func ExampleService_GetTypeMapA() { - _ = (*Service).GetTypeMapA -} - -func ExampleService_GetTypeMapAAAA() { - _ = (*Service).GetTypeMapAAAA -} - -func ExampleService_GetTypeMapEmpty() { - _ = (*Service).GetTypeMapEmpty -} - -func ExampleService_GetTypeMapNS() { - _ = (*Service).GetTypeMapNS -} - -func ExampleService_GetTypeMapRoot() { - _ = (*Service).GetTypeMapRoot -} - -func ExampleService_GetTypeMapTXT() { - _ = (*Service).GetTypeMapTXT -} - -func ExampleService_GetTypeName() { - _ = (*Service).GetTypeName -} - -func ExampleService_GetTypes() { - _ = (*Service).GetTypes -} - -func ExampleService_GetTypesByVal() { - _ = (*Service).GetTypesByVal -} - -func ExampleService_GetVerificationFlags() { - _ = (*Service).GetVerificationFlags -} - -func ExampleService_GetVerificationFlagsByVal() { - _ = (*Service).GetVerificationFlagsByVal -} - -func ExampleService_GetVerify() { - _ = (*Service).GetVerify -} - -func ExampleService_GetVerifyBinary() { - _ = (*Service).GetVerifyBinary -} - -func ExampleService_GetVerifyByBinary() { - _ = (*Service).GetVerifyByBinary -} - -func ExampleService_GetVerifyByName() { - _ = (*Service).GetVerifyByName -} - -func ExampleService_GetVerifyByString() { - _ = (*Service).GetVerifyByString -} - -func ExampleService_GetVerifyCovenants() { - _ = (*Service).GetVerifyCovenants -} - -func ExampleService_GetVerifyCovenantsHardened() { - _ = (*Service).GetVerifyCovenantsHardened -} - -func ExampleService_GetVerifyCovenantsLockup() { - _ = (*Service).GetVerifyCovenantsLockup -} - -func ExampleService_GetVerifyCovenantsNone() { - _ = (*Service).GetVerifyCovenantsNone -} - -func ExampleService_GetVerifyName() { - _ = (*Service).GetVerifyName -} - -func ExampleService_GetVerifyString() { - _ = (*Service).GetVerifyString -} - -func ExampleService_GrindName() { - _ = (*Service).GrindName -} - -func ExampleService_HSTypes() { - _ = (*Service).HSTypes -} - -func ExampleService_HSTypesByVal() { - _ = (*Service).HSTypesByVal -} - -func ExampleService_HandleIPCEvents() { - _ = (*Service).HandleIPCEvents -} - -func ExampleService_HasLocked() { - _ = (*Service).HasLocked -} - -func ExampleService_HasLockedBinary() { - _ = (*Service).HasLockedBinary -} - -func ExampleService_HasLockedByBinary() { - _ = (*Service).HasLockedByBinary -} - -func ExampleService_HasLockedByHash() { - _ = (*Service).HasLockedByHash -} - -func ExampleService_HasLockedByName() { - _ = (*Service).HasLockedByName -} - -func ExampleService_HasLockedByString() { - _ = (*Service).HasLockedByString -} - -func ExampleService_HasLockedCatalog() { - _ = (*Service).HasLockedCatalog -} - -func ExampleService_HasLockedHash() { - _ = (*Service).HasLockedHash -} - -func ExampleService_HasLockedName() { - _ = (*Service).HasLockedName -} - -func ExampleService_HasLockedString() { - _ = (*Service).HasLockedString -} - -func ExampleService_HasLookupCatalogName() { - _ = (*Service).HasLookupCatalogName -} - -func ExampleService_HasNames() { - _ = (*Service).HasNames -} - -func ExampleService_HasReserved() { - _ = (*Service).HasReserved -} - -func ExampleService_HasReservedBinary() { - _ = (*Service).HasReservedBinary -} - -func ExampleService_HasReservedByBinary() { - _ = (*Service).HasReservedByBinary -} - -func ExampleService_HasReservedByHash() { - _ = (*Service).HasReservedByHash -} - -func ExampleService_HasReservedByName() { - _ = (*Service).HasReservedByName -} - -func ExampleService_HasReservedByString() { - _ = (*Service).HasReservedByString -} - -func ExampleService_HasReservedCatalog() { - _ = (*Service).HasReservedCatalog -} - -func ExampleService_HasReservedHash() { - _ = (*Service).HasReservedHash -} - -func ExampleService_HasReservedName() { - _ = (*Service).HasReservedName -} - -func ExampleService_HasReservedString() { - _ = (*Service).HasReservedString -} - -func ExampleService_HasRollout() { - _ = (*Service).HasRollout -} - -func ExampleService_HasSaneCovenants() { - _ = (*Service).HasSaneCovenants -} - -func ExampleService_Hash() { - _ = (*Service).Hash -} - -func ExampleService_HashBinary() { - _ = (*Service).HashBinary -} - -func ExampleService_HashByBinary() { - _ = (*Service).HashByBinary -} - -func ExampleService_HashByName() { - _ = (*Service).HashByName -} - -func ExampleService_HashByString() { - _ = (*Service).HashByString -} - -func ExampleService_HashName() { - _ = (*Service).HashName -} - -func ExampleService_HashString() { - _ = (*Service).HashString -} - -func ExampleService_IsKnown() { - _ = (*Service).IsKnown -} - -func ExampleService_IsLinked() { - _ = (*Service).IsLinked -} - -func ExampleService_IsLockedUp() { - _ = (*Service).IsLockedUp -} - -func ExampleService_IsName() { - _ = (*Service).IsName -} - -func ExampleService_IsReserved() { - _ = (*Service).IsReserved -} - -func ExampleService_LockedCatalog() { - _ = (*Service).LockedCatalog -} - -func ExampleService_LockedEntries() { - _ = (*Service).LockedEntries -} - -func ExampleService_LockedKeys() { - _ = (*Service).LockedKeys -} - -func ExampleService_LockedPrefixSize() { - _ = (*Service).LockedPrefixSize -} - -func ExampleService_LockedSize() { - _ = (*Service).LockedSize -} - -func ExampleService_LockedValues() { - _ = (*Service).LockedValues -} - -func ExampleService_LookupCatalogName() { - _ = (*Service).LookupCatalogName -} - -func ExampleService_MandatoryVerifyCovenantFlags() { - _ = (*Service).MandatoryVerifyCovenantFlags -} - -func ExampleService_MaxCovenantSize() { - _ = (*Service).MaxCovenantSize -} - -func ExampleService_MaxNameSize() { - _ = (*Service).MaxNameSize -} - -func ExampleService_MaxResourceSize() { - _ = (*Service).MaxResourceSize -} - -func ExampleService_NameValue() { - _ = (*Service).NameValue -} - -func ExampleService_NewClaim() { - _ = (*Service).NewClaim -} - -func ExampleService_NewNameView() { - _ = (*Service).NewNameView -} - -func ExampleService_NewOutpoint() { - _ = (*Service).NewOutpoint -} - -func ExampleService_NewResource() { - _ = (*Service).NewResource -} - -func ExampleService_NextName() { - _ = (*Service).NextName -} - -func ExampleService_OnShutdown() { - _ = (*Service).OnShutdown -} - -func ExampleService_OnStartup() { - _ = (*Service).OnStartup -} - -func ExampleService_PrefixSize() { - _ = (*Service).PrefixSize -} - -func ExampleService_PrevName() { - _ = (*Service).PrevName -} - -func ExampleService_RemoveNames() { - _ = (*Service).RemoveNames -} - -func ExampleService_ReservedCatalog() { - _ = (*Service).ReservedCatalog -} - -func ExampleService_ReservedEntries() { - _ = (*Service).ReservedEntries -} - -func ExampleService_ReservedKeys() { - _ = (*Service).ReservedKeys -} - -func ExampleService_ReservedNameValue() { - _ = (*Service).ReservedNameValue -} - -func ExampleService_ReservedPrefixSize() { - _ = (*Service).ReservedPrefixSize -} - -func ExampleService_ReservedRootValue() { - _ = (*Service).ReservedRootValue -} - -func ExampleService_ReservedSize() { - _ = (*Service).ReservedSize -} - -func ExampleService_ReservedTopValue() { - _ = (*Service).ReservedTopValue -} - -func ExampleService_ReservedValues() { - _ = (*Service).ReservedValues -} - -func ExampleService_Resolve() { - _ = (*Service).Resolve -} - -func ExampleService_ResolveBinary() { - _ = (*Service).ResolveBinary -} - -func ExampleService_ResolveByBinary() { - _ = (*Service).ResolveByBinary -} - -func ExampleService_ResolveByName() { - _ = (*Service).ResolveByName -} - -func ExampleService_ResolveByString() { - _ = (*Service).ResolveByString -} - -func ExampleService_ResolveName() { - _ = (*Service).ResolveName -} - -func ExampleService_ResolveString() { - _ = (*Service).ResolveString -} - -func ExampleService_RootValue() { - _ = (*Service).RootValue -} - -func ExampleService_ServiceName() { - _ = (*Service).ServiceName -} - -func ExampleService_TopValue() { - _ = (*Service).TopValue -} - -func ExampleService_TypeMapA() { - _ = (*Service).TypeMapA -} - -func ExampleService_TypeMapAAAA() { - _ = (*Service).TypeMapAAAA -} - -func ExampleService_TypeMapEmpty() { - _ = (*Service).TypeMapEmpty -} - -func ExampleService_TypeMapNS() { - _ = (*Service).TypeMapNS -} - -func ExampleService_TypeMapRoot() { - _ = (*Service).TypeMapRoot -} - -func ExampleService_TypeMapTXT() { - _ = (*Service).TypeMapTXT -} - -func ExampleService_TypeName() { - _ = (*Service).TypeName -} - -func ExampleService_Types() { - _ = (*Service).Types -} - -func ExampleService_TypesByVal() { - _ = (*Service).TypesByVal -} - -func ExampleService_VerificationFlags() { - _ = (*Service).VerificationFlags -} - -func ExampleService_VerificationFlagsByVal() { - _ = (*Service).VerificationFlagsByVal -} - -func ExampleService_Verify() { - _ = (*Service).Verify -} - -func ExampleService_VerifyBinary() { - _ = (*Service).VerifyBinary -} - -func ExampleService_VerifyByBinary() { - _ = (*Service).VerifyByBinary -} - -func ExampleService_VerifyByName() { - _ = (*Service).VerifyByName -} - -func ExampleService_VerifyByString() { - _ = (*Service).VerifyByString -} - -func ExampleService_VerifyCovenants() { - _ = (*Service).VerifyCovenants -} - -func ExampleService_VerifyCovenantsHardened() { - _ = (*Service).VerifyCovenantsHardened -} - -func ExampleService_VerifyCovenantsLockup() { - _ = (*Service).VerifyCovenantsLockup -} - -func ExampleService_VerifyCovenantsNone() { - _ = (*Service).VerifyCovenantsNone -} - -func ExampleService_VerifyName() { - _ = (*Service).VerifyName -} - -func ExampleService_VerifyString() { - _ = (*Service).VerifyString -} - -func ExampleTopValue() { - _ = TopValue -} - -func ExampleTypeName() { - _ = TypeName -} - -func ExampleVerify() { - _ = Verify -} - -func ExampleVerifyBinary() { - _ = VerifyBinary -} - -func ExampleVerifyByBinary() { - _ = VerifyByBinary -} - -func ExampleVerifyByName() { - _ = VerifyByName -} - -func ExampleVerifyByString() { - _ = VerifyByString -} - -func ExampleVerifyCovenants() { - _ = VerifyCovenants -} - -func ExampleVerifyName() { - _ = VerifyName -} - -func ExampleVerifyString() { - _ = VerifyString -} - -func ExampleWithCore() { - _ = WithCore -} - -func ExampleWithLockedCatalog() { - _ = WithLockedCatalog -} - -func ExampleWithReservedCatalog() { - _ = WithReservedCatalog -}