diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8aa0e8e..eba214c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,6 +16,7 @@ jobs: --target BigInt \ --disable-indexing \ --output-path docs \ + --hosting-base-path BigInt \ --transform-for-static-hosting - name: Commit docs run: | diff --git a/docs/data/documentation/bigint.json b/docs/data/documentation/bigint.json index 7d7511d..aeb0e11 100644 --- a/docs/data/documentation/bigint.json +++ b/docs/data/documentation/bigint.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt"},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/bigint"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"collection","modules":[{"name":"BigInt"}],"roleHeading":"Framework","title":"BigInt","symbolKind":"module","externalID":"BigInt"},"topicSections":[{"title":"Structures","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"],"anchor":"Structures"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift"],"anchor":"Extended-Modules","generated":true,"title":"Extended Modules"}],"sections":[],"hierarchy":{"paths":[[]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"collection","modules":[{"name":"BigInt"}],"externalID":"BigInt","symbolKind":"module","title":"BigInt","roleHeading":"Framework"},"hierarchy":{"paths":[[]]},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"],"generated":true,"anchor":"Structures"},{"title":"Extended Modules","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift"],"generated":true,"anchor":"Extended-Modules"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint"]}],"references":{"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint.json b/docs/data/documentation/bigint/bigint.json index 7486dc2..c5d79ce 100644 --- a/docs/data/documentation/bigint/bigint.json +++ b/docs/data/documentation/bigint/bigint.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Structure","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigInt"}],"role":"symbol","externalID":"s:6BigIntAAV","title":"BigInt","symbolKind":"struct"},"abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"identifier"}]}],"kind":"declarations"},{"content":[{"type":"heading","anchor":"overview","level":2,"text":"Overview"},{"inlineContent":[{"type":"text","text":"Operations on big integers never overflow, but they might take a long time to execute."},{"text":" ","type":"text"},{"text":"The amount of memory (and address space) available is the only constraint to the magnitude of these numbers.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"text":"This particular big integer type uses base-2^64 digits to represent integers.","type":"text"}]},{"type":"paragraph","inlineContent":[{"code":"BigInt","type":"codeVoice"},{"type":"text","text":" is essentially a tiny wrapper that extends "},{"type":"codeVoice","code":"BigUInt"},{"text":" with a sign bit and provides signed integer","type":"text"},{"type":"text","text":" "},{"type":"text","text":"operations. Both the underlying absolute value and the negative\/positive flag are available as read-write"},{"type":"text","text":" "},{"type":"text","text":"properties."}]},{"type":"paragraph","inlineContent":[{"text":"Not all algorithms of ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":" are available for "},{"code":"BigInt","type":"codeVoice"},{"text":" values; for example, there is no square root or","type":"text"},{"type":"text","text":" "},{"type":"text","text":"primality test for signed integers. When you need to call one of these, just extract the absolute value:"}]},{"syntax":"Swift","code":["BigInt(255).magnitude.isPrime() \/\/ Returns false"],"type":"codeListing"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint"]}],"sections":[],"relationshipsSections":[{"identifiers":["doc:\/\/BigInt\/s18AdditiveArithmeticP","doc:\/\/BigInt\/Sz","doc:\/\/BigInt\/SL","doc:\/\/BigInt\/s8CopyableP","doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","doc:\/\/BigInt\/s23CustomStringConvertibleP","doc:\/\/BigInt\/Se","doc:\/\/BigInt\/SE","doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","doc:\/\/BigInt\/SH","doc:\/\/BigInt\/Sj","doc:\/\/BigInt\/SZ","doc:\/\/BigInt\/s13SignedNumericP","doc:\/\/BigInt\/Sx"],"title":"Conforms To","kind":"relationships","type":"conformsTo"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","interfaceLanguage":"swift"},"topicSections":[{"title":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u"],"anchor":"Operators","generated":true},{"anchor":"Initializers","title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)"]},{"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property"],"generated":true,"anchor":"Instance-Properties"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()"],"generated":true,"title":"Instance Methods","anchor":"Instance-Methods"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word"],"anchor":"Type-Aliases","generated":true,"title":"Type Aliases"},{"anchor":"Type-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2"],"generated":true,"title":"Type Properties"},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"],"anchor":"Enumerations","title":"Enumerations"},{"anchor":"Default-Implementations","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"],"generated":true,"title":"Default Implementations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/SignedInteger-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","title":"SignedInteger Implementations","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/signedinteger-implementations"},"doc://BigInt/documentation/BigInt/BigInt/isStrongProbablePrime(_:)":{"role":"symbol","abstract":[{"text":"Returns true iff this integer passes the ","type":"text"},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"text":" for the specified base.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","kind":"symbol","title":"isStrongProbablePrime(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isStrongProbablePrime"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/CustomPlaygroundDisplayConvertible-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","title":"CustomPlaygroundDisplayConvertible Implementations","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2xsul":{"role":"symbol","abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","kind":"symbol","title":"init(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}]},"doc://BigInt/s26ExpressibleByStringLiteralP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","title":"Swift.ExpressibleByStringLiteral"},"doc://BigInt/documentation/BigInt/BigInt/Magnitude-swift.typealias":{"role":"symbol","navigatorTitle":[{"text":"Magnitude","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","kind":"symbol","title":"BigInt.Magnitude","type":"topic","url":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Magnitude","kind":"identifier"}]},"doc://BigInt/s18AdditiveArithmeticP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s18AdditiveArithmeticP","title":"Swift.AdditiveArithmetic"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByIntegerLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","kind":"article","title":"ExpressibleByIntegerLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/CustomStringConvertible-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","title":"CustomStringConvertible Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations"},"doc://BigInt/SE":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SE","title":"Swift.Encodable"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-4jpxh":{"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,"},{"type":"text","text":" "},{"type":"text","text":"where the first byte indicates sign (0 for positive, 1 for negative)"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"UnsafeRawBufferPointer","preciseIdentifier":"s:SW"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9eday":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","kind":"symbol","title":"&<<(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/s43ExpressibleByExtendedGraphemeClusterLiteralP":{"title":"Swift.ExpressibleByExtendedGraphemeClusterLiteral","identifier":"doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","type":"unresolvable"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/Sj":{"title":"Swift.Numeric","identifier":"doc:\/\/BigInt\/Sj","type":"unresolvable"},"doc://BigInt/Se":{"title":"Swift.Decodable","identifier":"doc:\/\/BigInt\/Se","type":"unresolvable"},"doc://BigInt/SZ":{"title":"Swift.SignedInteger","identifier":"doc:\/\/BigInt\/SZ","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/isZero":{"abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","title":"isZero","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/iszero","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/Numeric-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/numeric-implementations","abstract":[],"role":"collectionGroup","title":"Numeric Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations"},"doc://BigInt/SL":{"title":"Swift.Comparable","identifier":"doc:\/\/BigInt\/SL","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/squareRoot()":{"role":"symbol","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"code":"value","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()","kind":"symbol","title":"squareRoot()","type":"topic","url":"\/documentation\/bigint\/bigint\/squareroot()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt/BigInt/power(_:modulus:)":{"abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":" in modulo arithmetic under ","type":"text"},{"code":"modulus","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)","title":"power(_:modulus:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/power(_:modulus:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"doc://BigInt/documentation/BigInt/BigInt/init(words:)":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","title":"init(words:)","url":"\/documentation\/bigint\/bigint\/init(words:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/inverse(_:)":{"role":"symbol","abstract":[{"type":"text","text":"Returns the "},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true},{"type":"text","text":","},{"type":"text","text":" "},{"text":"or ","type":"text"},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no such number."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","kind":"symbol","title":"inverse(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/inverse(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","title":"Equatable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/equatable-implementations","type":"topic"},"doc://BigInt/s8CopyableP":{"title":"Swift.Copyable","type":"unresolvable","identifier":"doc:\/\/BigInt\/s8CopyableP"},"doc://BigInt/Sz":{"title":"Swift.BinaryInteger","type":"unresolvable","identifier":"doc:\/\/BigInt\/Sz"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9v4op":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","title":"&>>(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&>>","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/magnitude-swift.property":{"abstract":[{"text":"The absolute value of this integer.","type":"text"}],"type":"topic","title":"magnitude","kind":"symbol","url":"\/documentation\/bigint\/bigint\/magnitude-swift.property","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"magnitude","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt/Decodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","url":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/sign-swift.property":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sign"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"}],"title":"sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","url":"\/documentation\/bigint\/bigint\/sign-swift.property","type":"topic","kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"True iff the value of this integer is negative."}]},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","type":"topic","abstract":[],"title":"SignedNumeric Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/s27ExpressibleByIntegerLiteralP":{"title":"Swift.ExpressibleByIntegerLiteral","identifier":"doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/serialize()":{"role":"symbol","abstract":[{"text":"Return a ","type":"text"},{"code":"Data","type":"codeVoice"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","url":"\/documentation\/bigint\/bigint\/serialize()","title":"serialize()","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"serialize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}]},"doc://BigInt/s34CustomPlaygroundDisplayConvertibleP":{"title":"Swift.CustomPlaygroundDisplayConvertible","type":"unresolvable","identifier":"doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP"},"doc://BigInt/s33ExpressibleByUnicodeScalarLiteralP":{"title":"Swift.ExpressibleByUnicodeScalarLiteral","type":"unresolvable","identifier":"doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-3fs3d":{"abstract":[],"type":"topic","title":"^(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"^"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://BigInt/documentation/BigInt/BigInt/greatestCommonDivisor(with:)":{"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","title":"greatestCommonDivisor(with:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"doc://BigInt/documentation/BigInt/BigInt/init(sign:magnitude:)":{"role":"symbol","abstract":[{"text":"Initializes a new big integer with the provided absolute number and sign flag.","type":"text"}],"title":"init(sign:magnitude:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sign"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV4SignO","kind":"typeIdentifier","text":"Sign"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/isSigned-5fyf2":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2","url":"\/documentation\/bigint\/bigint\/issigned-5fyf2","title":"isSigned","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-ji3u":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u","kind":"symbol","type":"topic","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"AdditiveArithmetic Implementations","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations"},"doc://BigInt/SQ":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SQ","title":"Swift.Equatable"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByStringLiteral-Implementations":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","kind":"article","type":"topic","title":"ExpressibleByStringLiteral Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/init()-416p0":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","url":"\/documentation\/bigint\/bigint\/init()-416p0","title":"init()","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations","role":"collectionGroup","abstract":[],"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/modulus(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"modulus","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"type":"topic","abstract":[{"text":"Return the result of ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" mod "},{"type":"codeVoice","code":"b"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"title":"modulus(_:)","url":"\/documentation\/bigint\/bigint\/modulus(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","role":"symbol","kind":"symbol"},"doc://BigInt/s13SignedNumericP":{"title":"Swift.SignedNumeric","type":"unresolvable","identifier":"doc:\/\/BigInt\/s13SignedNumericP"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-iwcn":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","url":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","title":"&(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}]},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","title":"multiplicative inverse of this integer in modulo modulus arithmetic","titleInlineContent":[{"text":"multiplicative inverse of this integer in modulo ","type":"text"},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" arithmetic"}],"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-ys3":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","title":"&<<=(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"&<<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/Word":{"navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Word"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic","title":"BigInt.Word"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-7tvup":{"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"text":".","type":"text"},{"text":" ","type":"text"},{"text":"The data is assumed to be in network (big-endian) byte order with a first","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"byte to represent the sign (0 for positive, 1 for negative)"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","kind":"symbol","type":"topic","title":"init(_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/isPrime(rounds:)":{"abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/isprime(rounds:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"rounds","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","title":"isPrime(rounds:)"},"doc://BigInt/documentation/BigInt/BigInt/signum()":{"url":"\/documentation\/bigint\/bigint\/signum()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"signum()","abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"-1"},{"type":"text","text":" if this value is negative and "},{"type":"codeVoice","code":"1"},{"type":"text","text":" if it’s positive; otherwise, "},{"type":"codeVoice","code":"0"},{"type":"text","text":"."}]},"doc://BigInt/Sx":{"identifier":"doc:\/\/BigInt\/Sx","title":"Swift.Strideable","type":"unresolvable"},"doc://BigInt/SH":{"identifier":"doc:\/\/BigInt\/SH","title":"Swift.Hashable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/Encodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","url":"\/documentation\/bigint\/bigint\/encodable-implementations","title":"Encodable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-1zawr":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","kind":"symbol","type":"topic","title":"&>>=(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:radix:)":{"role":"symbol","abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"text":" ","type":"text"},{"text":"letters from the English alphabet.","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)","url":"\/documentation\/bigint\/bigint\/init(_:radix:)","title":"init(_:radix:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":")","kind":"text"}]},"https://en.wikipedia.org/wiki/Probable_prime":{"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","title":"strong probable prime test","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt/BigInt/power(_:)":{"role":"symbol","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","kind":"symbol","title":"power(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/power(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Hashable-Implementations":{"url":"\/documentation\/bigint\/bigint\/hashable-implementations","abstract":[],"title":"Hashable Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","type":"topic","role":"collectionGroup","kind":"article"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"metadata":{"symbolKind":"struct","modules":[{"name":"BigInt"}],"title":"BigInt","roleHeading":"Structure","navigatorTitle":[{"kind":"identifier","text":"BigInt"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"kind":"identifier","text":"BigInt"}],"externalID":"s:6BigIntAAV","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"identifier"}],"platforms":["macOS"]}]},{"content":[{"text":"Overview","type":"heading","anchor":"overview","level":2},{"inlineContent":[{"text":"Operations on big integers never overflow, but they might take a long time to execute.","type":"text"},{"text":" ","type":"text"},{"text":"The amount of memory (and address space) available is the only constraint to the magnitude of these numbers.","type":"text"}],"type":"paragraph"},{"inlineContent":[{"text":"This particular big integer type uses base-2^64 digits to represent integers.","type":"text"}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"codeVoice","code":"BigInt"},{"type":"text","text":" is essentially a tiny wrapper that extends "},{"type":"codeVoice","code":"BigUInt"},{"text":" with a sign bit and provides signed integer","type":"text"},{"type":"text","text":" "},{"text":"operations. Both the underlying absolute value and the negative\/positive flag are available as read-write","type":"text"},{"type":"text","text":" "},{"type":"text","text":"properties."}]},{"type":"paragraph","inlineContent":[{"text":"Not all algorithms of ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"text":" are available for ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":" values; for example, there is no square root or"},{"type":"text","text":" "},{"text":"primality test for signed integers. When you need to call one of these, just extract the absolute value:","type":"text"}]},{"code":["BigInt(255).magnitude.isPrime() \/\/ Returns false"],"type":"codeListing","syntax":"Swift"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint"]}],"kind":"symbol","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u"],"title":"Operators","anchor":"Operators","generated":true},{"title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)"],"anchor":"Initializers"},{"title":"Instance Properties","generated":true,"anchor":"Instance-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property"]},{"anchor":"Instance-Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()"],"title":"Instance Methods"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word"],"anchor":"Type-Aliases","title":"Type Aliases","generated":true},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2"],"title":"Type Properties","anchor":"Type-Properties"},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"],"anchor":"Enumerations","title":"Enumerations"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"],"anchor":"Default-Implementations","generated":true,"title":"Default Implementations"}],"relationshipsSections":[{"title":"Conforms To","kind":"relationships","identifiers":["doc:\/\/BigInt\/s18AdditiveArithmeticP","doc:\/\/BigInt\/Sz","doc:\/\/BigInt\/SL","doc:\/\/BigInt\/s8CopyableP","doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","doc:\/\/BigInt\/s23CustomStringConvertibleP","doc:\/\/BigInt\/Se","doc:\/\/BigInt\/SE","doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","doc:\/\/BigInt\/SH","doc:\/\/BigInt\/Sj","doc:\/\/BigInt\/s8SendableP","doc:\/\/BigInt\/SZ","doc:\/\/BigInt\/s13SignedNumericP","doc:\/\/BigInt\/Sx"],"type":"conformsTo"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/SL":{"type":"unresolvable","title":"Swift.Comparable","identifier":"doc:\/\/BigInt\/SL"},"doc://BigInt/SZ":{"type":"unresolvable","title":"Swift.SignedInteger","identifier":"doc:\/\/BigInt\/SZ"},"doc://BigInt/documentation/BigInt/BigInt/init(words:)":{"url":"\/documentation\/bigint\/bigint\/init(words:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)","title":"init(words:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-7tvup":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","title":"init(_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The data is assumed to be in network (big-endian) byte order with a first"},{"text":" ","type":"text"},{"text":"byte to represent the sign (0 for positive, 1 for negative)","type":"text"}],"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/Magnitude-swift.typealias":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","navigatorTitle":[{"kind":"identifier","text":"Magnitude"}],"title":"BigInt.Magnitude","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Magnitude","kind":"identifier"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias"},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","kind":"article","title":"Strideable Implementations","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-ji3u":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u","type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","title":"|(_:_:)"},"doc://BigInt/s27ExpressibleByIntegerLiteralP":{"title":"Swift.ExpressibleByIntegerLiteral","type":"unresolvable","identifier":"doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP"},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","title":"multiplicative inverse of this integer in modulo modulus arithmetic","titleInlineContent":[{"type":"text","text":"multiplicative inverse of this integer in modulo "},{"code":"modulus","type":"codeVoice"},{"type":"text","text":" arithmetic"}],"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},"doc://BigInt/s13SignedNumericP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s13SignedNumericP","title":"Swift.SignedNumeric"},"doc://BigInt/documentation/BigInt/BigInt/isZero":{"url":"\/documentation\/bigint\/bigint\/iszero","abstract":[{"type":"text","text":"Return true iff this integer is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","title":"isZero","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isZero","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/s43ExpressibleByExtendedGraphemeClusterLiteralP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","title":"Swift.ExpressibleByExtendedGraphemeClusterLiteral"},"doc://BigInt/documentation/BigInt/BigInt/Encodable-Implementations":{"title":"Encodable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/encodable-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/s8CopyableP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s8CopyableP","title":"Swift.Copyable"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByStringLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","type":"topic","title":"ExpressibleByStringLiteral Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations","role":"collectionGroup","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/greatestCommonDivisor(with:)":{"role":"symbol","title":"greatestCommonDivisor(with:)","abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"code":"a","type":"codeVoice"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"kind":"article","type":"topic","title":"ExpressibleByUnicodeScalarLiteral Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Numeric-Implementations":{"role":"collectionGroup","title":"Numeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","abstract":[],"url":"\/documentation\/bigint\/bigint\/numeric-implementations"},"doc://BigInt/documentation/BigInt/BigInt/Hashable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","type":"topic","abstract":[],"title":"Hashable Implementations","url":"\/documentation\/bigint\/bigint\/hashable-implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigInt/inverse(_:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/inverse(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","abstract":[{"type":"text","text":"Returns the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","type":"reference","isActive":true},{"type":"text","text":","},{"text":" ","type":"text"},{"text":"or ","type":"text"},{"type":"codeVoice","code":"nil"},{"text":" if there is no such number.","type":"text"}],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":"?","kind":"text"}],"title":"inverse(_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/modulus(_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"modulus","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"role":"symbol","kind":"symbol","title":"modulus(_:)","url":"\/documentation\/bigint\/bigint\/modulus(_:)","abstract":[{"type":"text","text":"Return the result of "},{"code":"a","type":"codeVoice"},{"text":" mod ","type":"text"},{"code":"b","type":"codeVoice"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/s33ExpressibleByUnicodeScalarLiteralP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","title":"Swift.ExpressibleByUnicodeScalarLiteral"},"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","kind":"article","abstract":[],"type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/equatable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-3fs3d":{"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","url":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","role":"symbol","title":"^(_:_:)","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/isPrime(rounds:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}],"url":"\/documentation\/bigint\/bigint\/isprime(rounds:)","title":"isPrime(rounds:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/signum()":{"title":"signum()","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"signum","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"abstract":[{"text":"Returns ","type":"text"},{"code":"-1","type":"codeVoice"},{"text":" if this value is negative and ","type":"text"},{"type":"codeVoice","code":"1"},{"type":"text","text":" if it’s positive; otherwise, "},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","url":"\/documentation\/bigint\/bigint\/signum()","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init()-416p0":{"url":"\/documentation\/bigint\/bigint\/init()-416p0","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","abstract":[],"title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","kind":"symbol"},"doc://BigInt/Se":{"title":"Swift.Decodable","identifier":"doc:\/\/BigInt\/Se","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/Word":{"url":"\/documentation\/bigint\/bigint\/word","title":"BigInt.Word","role":"symbol","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigInt"},{"text":"’s underlying number system.","type":"text"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word"},"doc://BigInt/Sz":{"title":"Swift.BinaryInteger","identifier":"doc:\/\/BigInt\/Sz","type":"unresolvable"},"doc://BigInt/s34CustomPlaygroundDisplayConvertibleP":{"title":"Swift.CustomPlaygroundDisplayConvertible","identifier":"doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","type":"unresolvable"},"https://en.wikipedia.org/wiki/Probable_prime":{"title":"strong probable prime test","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt/BigInt/squareRoot()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"role":"symbol","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"type":"codeVoice","code":"value"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","title":"squareRoot()","url":"\/documentation\/bigint\/bigint\/squareroot()"},"doc://BigInt/documentation/BigInt/BigInt/magnitude-swift.property":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","type":"topic","url":"\/documentation\/bigint\/bigint\/magnitude-swift.property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"magnitude","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"The absolute value of this integer."}],"title":"magnitude"},"doc://BigInt/s26ExpressibleByStringLiteralP":{"type":"unresolvable","title":"Swift.ExpressibleByStringLiteral","identifier":"doc:\/\/BigInt\/s26ExpressibleByStringLiteralP"},"doc://BigInt/Sj":{"type":"unresolvable","title":"Swift.Numeric","identifier":"doc:\/\/BigInt\/Sj"},"doc://BigInt/Sx":{"type":"unresolvable","title":"Swift.Strideable","identifier":"doc:\/\/BigInt\/Sx"},"doc://BigInt/documentation/BigInt/BigInt/Decodable-Implementations":{"url":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","role":"collectionGroup","abstract":[],"kind":"article"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9v4op":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","role":"symbol","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&>>","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"type":"topic","abstract":[],"title":"&>>(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-4jpxh":{"url":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh","abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"where the first byte indicates sign (0 for positive, 1 for negative)"}],"type":"topic","title":"init(_:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/CustomStringConvertible-Implementations":{"url":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","abstract":[],"type":"topic","title":"CustomStringConvertible Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-1zawr":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","type":"topic","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","abstract":[],"title":"&>>=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-iwcn":{"abstract":[],"title":"&(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"type":"topic"},"doc://BigInt/SE":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SE","title":"Swift.Encodable"},"doc://BigInt/s18AdditiveArithmeticP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s18AdditiveArithmeticP","title":"Swift.AdditiveArithmetic"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-ys3":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&<<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"title":"&<<=(_:_:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"title":"SignedNumeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations"},"doc://BigInt/documentation/BigInt/BigInt/isSigned-5fyf2":{"role":"symbol","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isSigned","type":"topic","url":"\/documentation\/bigint\/bigint\/issigned-5fyf2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/sign-swift.property":{"title":"sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","abstract":[{"text":"True iff the value of this integer is negative.","type":"text"}],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sign"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.property","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/serialize()":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"serialize","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","url":"\/documentation\/bigint\/bigint\/serialize()","role":"symbol","title":"serialize()","type":"topic","abstract":[{"type":"text","text":"Return a "},{"code":"Data","type":"codeVoice"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/power(_:modulus:)":{"url":"\/documentation\/bigint\/bigint\/power(_:modulus:)","title":"power(_:modulus:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"type":"codeVoice","code":"modulus"},{"text":".","type":"text"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByIntegerLiteral-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","abstract":[],"title":"ExpressibleByIntegerLiteral Implementations","kind":"article","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/init(sign:magnitude:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","abstract":[{"type":"text","text":"Initializes a new big integer with the provided absolute number and sign flag."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"sign","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"title":"init(sign:magnitude:)","role":"symbol"},"doc://BigInt/SH":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SH","title":"Swift.Hashable"},"doc://BigInt/s8SendableP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s8SendableP","title":"Swift.Sendable"},"doc://BigInt/documentation/BigInt/BigInt/SignedInteger-Implementations":{"abstract":[],"title":"SignedInteger Implementations","url":"\/documentation\/bigint\/bigint\/signedinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","kind":"article","type":"topic","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:radix:)":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:radix:)","abstract":[{"text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above ","type":"text"},{"type":"codeVoice","code":"9"},{"text":" are represented by","type":"text"},{"text":" ","type":"text"},{"text":"letters from the English alphabet.","type":"text"}],"kind":"symbol","title":"init(_:radix:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9eday":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","role":"symbol","title":"&<<(_:_:)","kind":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/isStrongProbablePrime(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isStrongProbablePrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"type":"text","text":" for the specified base."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","title":"isStrongProbablePrime(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)"},"doc://BigInt/documentation/BigInt/BigInt/power(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"url":"\/documentation\/bigint\/bigint\/power(_:)","abstract":[{"text":"Returns this integer raised to the power ","type":"text"},{"code":"exponent","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","type":"topic","role":"symbol","title":"power(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2xsul":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","title":"init(_:)","type":"topic","abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"role":"symbol"},"doc://BigInt/SQ":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SQ","title":"Swift.Equatable"},"doc://BigInt/documentation/BigInt/BigInt/CustomPlaygroundDisplayConvertible-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations","kind":"article","role":"collectionGroup","abstract":[],"title":"CustomPlaygroundDisplayConvertible Implementations"},"doc://BigInt/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/!=(_:_:)-3bni3.json b/docs/data/documentation/bigint/bigint/!=(_:_:)-3bni3.json index 6e1e6d6..c9331c4 100644 --- a/docs/data/documentation/bigint/bigint/!=(_:_:)-3bni3.json +++ b/docs/data/documentation/bigint/bigint/!=(_:_:)-3bni3.json @@ -1 +1 @@ -{"kind":"symbol","metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SzsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"!=(_:_:)","extendedModule":"Swift","symbolKind":"op"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.!=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-3bni3":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"title":"!=(_:_:)","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.!=(_:_:)"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"extendedModule":"Swift","externalID":"s:SzsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"!=(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","symbolKind":"op"},"references":{"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-3bni3":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","title":"!=(_:_:)","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/!=(_:_:)-9tuvb.json b/docs/data/documentation/bigint/bigint/!=(_:_:)-9tuvb.json index 459de3b..61033e6 100644 --- a/docs/data/documentation/bigint/bigint/!=(_:_:)-9tuvb.json +++ b/docs/data/documentation/bigint/bigint/!=(_:_:)-9tuvb.json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","title":"!=(_:_:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","symbolKind":"op"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9tuvb":{"url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","kind":"symbol","type":"topic","title":"!=(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","title":"Equatable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/equatable-implementations","type":"topic"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Equatable.!=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"metadata":{"symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","title":"!=(_:_:)","roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","kind":"article","abstract":[],"type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/equatable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9tuvb":{"kind":"symbol","abstract":[],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/!=(_:_:)-9xzsv.json b/docs/data/documentation/bigint/bigint/!=(_:_:)-9xzsv.json index 528dbe5..e3bfb46 100644 --- a/docs/data/documentation/bigint/bigint/!=(_:_:)-9xzsv.json +++ b/docs/data/documentation/bigint/bigint/!=(_:_:)-9xzsv.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"languages":["swift"]}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:SzsE2neoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","title":"!=(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.!=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9xzsv":{"type":"topic","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.!=(_:_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":"!=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"extendedModule":"Swift","externalID":"s:SzsE2neoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9xzsv":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","title":"!=(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&(_:_:)-5b5sk.json b/docs/data/documentation/bigint/bigint/&(_:_:)-5b5sk.json index 1960dbb..bdf9ee5 100644 --- a/docs/data/documentation/bigint/bigint/&(_:_:)-5b5sk.json +++ b/docs/data/documentation/bigint/bigint/&(_:_:)-5b5sk.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"extendedModule":"Swift","role":"symbol","externalID":"s:SzsE1aoiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"roleHeading":"Operator","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"&(_:_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.&(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-5b5sk":{"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","url":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk","title":"&(_:_:)"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.&(_:_:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"roleHeading":"Operator","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","externalID":"s:SzsE1aoiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"&(_:_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-5b5sk":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","title":"&(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&(_:_:)-iwcn.json b/docs/data/documentation/bigint/bigint/&(_:_:)-iwcn.json index 6179fed..5e4f7c0 100644 --- a/docs/data/documentation/bigint/bigint/&(_:_:)-iwcn.json +++ b/docs/data/documentation/bigint/bigint/&(_:_:)-iwcn.json @@ -1 +1 @@ -{"metadata":{"extendedModule":"BigInt","externalID":"s:6BigIntAAV1aoiyA2Bz_ABtFZ","symbolKind":"op","modules":[{"name":"BigInt"}],"role":"symbol","title":"&(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&(_:_:)-iwcn"]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-iwcn":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","url":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","title":"&(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"title":"&(_:_:)","extendedModule":"BigInt","symbolKind":"op","externalID":"s:6BigIntAAV1aoiyA2Bz_ABtFZ","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"roleHeading":"Operator","role":"symbol"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&(_:_:)-iwcn"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-iwcn":{"abstract":[],"title":"&(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-iwcn","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&=(_:_:).json b/docs/data/documentation/bigint/bigint/&=(_:_:).json index 8423f30..51e589f 100644 --- a/docs/data/documentation/bigint/bigint/&=(_:_:).json +++ b/docs/data/documentation/bigint/bigint/&=(_:_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","interfaceLanguage":"swift"},"metadata":{"role":"symbol","externalID":"s:6BigIntAAV2aeoiyyABz_ABtFZ","symbolKind":"op","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":"&=(_:_:)","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/&=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.&=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/&=(_:_:)":{"title":"&=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/&=(_:_:)","type":"topic","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/&=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Operator","symbolKind":"op","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","title":"&=(_:_:)","externalID":"s:6BigIntAAV2aeoiyyABz_ABtFZ","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.&=(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&=(_:_:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/&=(_:_:)","title":"&=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&__(_:_:)-9eday.json b/docs/data/documentation/bigint/bigint/&__(_:_:)-9eday.json index 2207a96..911ef37 100644 --- a/docs/data/documentation/bigint/bigint/&__(_:_:)-9eday.json +++ b/docs/data/documentation/bigint/bigint/&__(_:_:)-9eday.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/&__(_:_:)-9eday"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"extendedModule":"BigInt","title":"&<<(_:_:)","roleHeading":"Operator","externalID":"s:6BigIntAAV3alloiyA2B_ABtFZ","role":"symbol","symbolKind":"op","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&<<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"left"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"right","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9eday":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","kind":"symbol","title":"&<<(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Operator","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV3alloiyA2B_ABtFZ","title":"&<<(_:_:)"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"left","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"right"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__(_:_:)-9eday"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9eday":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9eday","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","role":"symbol","title":"&<<(_:_:)","kind":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&__(_:_:)-9v4op.json b/docs/data/documentation/bigint/bigint/&__(_:_:)-9v4op.json index 3b04699..a0a7c4d 100644 --- a/docs/data/documentation/bigint/bigint/&__(_:_:)-9v4op.json +++ b/docs/data/documentation/bigint/bigint/&__(_:_:)-9v4op.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&>>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"left","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"text":"right","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":"&>>(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&>>"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"externalID":"s:6BigIntAAV3aggoiyA2B_ABtFZ","symbolKind":"op","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9v4op":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","title":"&>>(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&>>","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&>>","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"left","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"text":"right","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"platforms":["macOS"],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op"]}],"kind":"symbol","sections":[],"metadata":{"roleHeading":"Operator","symbolKind":"op","externalID":"s:6BigIntAAV3aggoiyA2B_ABtFZ","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"title":"&>>(_:_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&__(_:_:)-9v4op":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__(_:_:)-9v4op","role":"symbol","url":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&>>","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"type":"topic","abstract":[],"title":"&>>(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&__=(_:_:)-1zawr.json b/docs/data/documentation/bigint/bigint/&__=(_:_:)-1zawr.json index 9d0e57d..3006a0f 100644 --- a/docs/data/documentation/bigint/bigint/&__=(_:_:)-1zawr.json +++ b/docs/data/documentation/bigint/bigint/&__=(_:_:)-1zawr.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&>>=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"left","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"right","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&>>=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV4aggeoiyyABz_ABtFZ","title":"&>>=(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","symbolKind":"op","modules":[{"name":"BigInt"}]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-1zawr":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","kind":"symbol","type":"topic","title":"&>>=(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&>>=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"left"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"right","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Operator","symbolKind":"op","externalID":"s:6BigIntAAV4aggeoiyyABz_ABtFZ","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"title":"&>>=(_:_:)","extendedModule":"BigInt"},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-1zawr":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-1zawr","type":"topic","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&>>="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","abstract":[],"title":"&>>=(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/&__=(_:_:)-ys3.json b/docs/data/documentation/bigint/bigint/&__=(_:_:)-ys3.json index d9de8cc..b428c66 100644 --- a/docs/data/documentation/bigint/bigint/&__=(_:_:)-ys3.json +++ b/docs/data/documentation/bigint/bigint/&__=(_:_:)-ys3.json @@ -1 +1 @@ -{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3"},"metadata":{"title":"&<<=(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&<<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV4alleoiyyABz_ABtFZ","extendedModule":"BigInt","roleHeading":"Operator","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"left"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"right","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-ys3":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","title":"&<<=(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"&<<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"&<<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"left","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"right","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&<<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"extendedModule":"BigInt","title":"&<<=(_:_:)","symbolKind":"op","externalID":"s:6BigIntAAV4alleoiyyABz_ABtFZ","roleHeading":"Operator","role":"symbol"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/&__=(_:_:)-ys3":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&<<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"title":"&<<=(_:_:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&__=(_:_:)-ys3","type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/'...(_:)-5iv7x.json b/docs/data/documentation/bigint/bigint/'...(_:)-5iv7x.json index abdba01..9c15e27 100644 --- a/docs/data/documentation/bigint/bigint/'...(_:)-5iv7x.json +++ b/docs/data/documentation/bigint/bigint/'...(_:)-5iv7x.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s19PartialRangeThroughV","text":"PartialRangeThrough","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x"},"metadata":{"roleHeading":"Operator","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s19PartialRangeThroughV","text":"PartialRangeThrough","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"symbolKind":"op","extendedModule":"Swift","externalID":"s:SLsE3zzzopys19PartialRangeThroughVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","title":"...(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'...(_:)-5iv7x"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable....(_:)"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-5iv7x":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x","title":"...(_:)","type":"topic"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"maximum","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/'...(_:)-5iv7x"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x"},"metadata":{"title":"...(_:)","extendedModule":"Swift","externalID":"s:SLsE3zzzopys19PartialRangeThroughVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"PartialRangeThrough","kind":"typeIdentifier","preciseIdentifier":"s:s19PartialRangeThroughV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"symbolKind":"op","roleHeading":"Operator"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable....(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-5iv7x":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","abstract":[],"title":"...(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/'...(_:)-8y2pm.json b/docs/data/documentation/bigint/bigint/'...(_:)-8y2pm.json index 398bc53..f42fc64 100644 --- a/docs/data/documentation/bigint/bigint/'...(_:)-8y2pm.json +++ b/docs/data/documentation/bigint/bigint/'...(_:)-8y2pm.json @@ -1 +1 @@ -{"metadata":{"externalID":"s:SLsE3zzzoPys16PartialRangeFromVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"op","title":"...(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}]},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"minimum"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'...(_:)-8y2pm"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable....(_:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-8y2pm":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","abstract":[],"title":"...(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"minimum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s16PartialRangeFromV","kind":"typeIdentifier","text":"PartialRangeFrom"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"symbolKind":"op","title":"...(_:)","externalID":"s:SLsE3zzzoPys16PartialRangeFromVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm"},"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'...(_:)-8y2pm"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable....(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-8y2pm":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s16PartialRangeFromV","text":"PartialRangeFrom","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"...(_:)","url":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/'...(_:_:).json b/docs/data/documentation/bigint/bigint/'...(_:_:).json index efae754..e9c0f03 100644 --- a/docs/data/documentation/bigint/bigint/'...(_:_:).json +++ b/docs/data/documentation/bigint/bigint/'...(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"minimum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maximum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ClosedRange","preciseIdentifier":"s:SN","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"metadata":{"role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"...(_:_:)","symbolKind":"op","extendedModule":"Swift","externalID":"s:SLsE3zzzoiySNyxGx_xtFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ClosedRange","preciseIdentifier":"s:SN"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'...(_:_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable....(_:_:)"},{"text":".","type":"text"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/...(_:_:)":{"type":"topic","url":"\/documentation\/bigint\/bigint\/'...(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"ClosedRange","kind":"typeIdentifier","preciseIdentifier":"s:SN"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"...(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"minimum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"maximum","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"ClosedRange","kind":"typeIdentifier","preciseIdentifier":"s:SN"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'...(_:_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable....(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"Swift","roleHeading":"Operator","externalID":"s:SLsE3zzzoiySNyxGx_xtFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:SN","text":"ClosedRange"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"...(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/...(_:_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","abstract":[],"title":"...(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/'...(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/'.._(_:).json b/docs/data/documentation/bigint/bigint/'.._(_:).json index bc6c196..713685d 100644 --- a/docs/data/documentation/bigint/bigint/'.._(_:).json +++ b/docs/data/documentation/bigint/bigint/'.._(_:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'.._(_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable...<(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"externalID":"s:SLsE3zzlopys16PartialRangeUpToVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"symbolKind":"op","extendedModule":"Swift","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"..<(_:)"},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"maximum"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s16PartialRangeUpToV","kind":"typeIdentifier","text":"PartialRangeUpTo"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s16PartialRangeUpToV","kind":"typeIdentifier","text":"PartialRangeUpTo"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/'.._(_:)","title":"..<(_:)","type":"topic"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable...<(_:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"externalID":"s:SLsE3zzlopys16PartialRangeUpToVyxGxFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","title":"..<(_:)","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/'.._(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'.._(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"kind":"symbol","title":"..<(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/'.._(_:_:).json b/docs/data/documentation/bigint/bigint/'.._(_:_:).json index 44e1d98..50816cf 100644 --- a/docs/data/documentation/bigint/bigint/'.._(_:_:).json +++ b/docs/data/documentation/bigint/bigint/'.._(_:_:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/'.._(_:_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","roleHeading":"Operator","externalID":"s:SLsE3zzloiySnyxGx_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"..<(_:_:)","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"symbolKind":"op"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable...<(_:_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"minimum"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"maximum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/'.._(_:_:)","title":"..<(_:_:)","type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable...<(_:_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"symbolKind":"op","title":"..<(_:_:)","roleHeading":"Operator","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"externalID":"s:SLsE3zzloiySnyxGx_xtFZ::SYNTHESIZED::s:6BigIntAAV"},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/'.._(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"minimum"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'.._(_:_:)","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"..<(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/*(_:_:).json b/docs/data/documentation/bigint/bigint/*(_:_:).json index 644c23f..9d3f018 100644 --- a/docs/data/documentation/bigint/bigint/*(_:_:).json +++ b/docs/data/documentation/bigint/bigint/*(_:_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/*(_:_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)"},"abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" with "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"languages":["swift"]}]}],"metadata":{"externalID":"s:6BigIntAAV1moiyA2B_ABtFZ","roleHeading":"Operator","title":"*(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"*","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"modules":[{"name":"BigInt"}],"symbolKind":"op","extendedModule":"BigInt","role":"symbol"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/*(_:_:)":{"kind":"symbol","title":"*(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/*(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" with "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"}]}]}],"metadata":{"roleHeading":"Operator","role":"symbol","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"externalID":"s:6BigIntAAV1moiyA2B_ABtFZ","symbolKind":"op","modules":[{"name":"BigInt"}],"title":"*(_:_:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/*(_:_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/*(_:_:)":{"role":"symbol","type":"topic","abstract":[{"text":"Multiply ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","url":"\/documentation\/bigint\/bigint\/*(_:_:)","kind":"symbol","title":"*(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/*=(_:_:).json b/docs/data/documentation/bigint/bigint/*=(_:_:).json index 8e2d59c..0b0c6c8 100644 --- a/docs/data/documentation/bigint/bigint/*=(_:_:).json +++ b/docs/data/documentation/bigint/bigint/*=(_:_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" in place.","type":"text"}],"metadata":{"title":"*=(_:_:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"roleHeading":"Operator","externalID":"s:6BigIntAAV2meoiyyABz_ABtFZ","role":"symbol","symbolKind":"op"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/*=(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/*=(_:_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" with "},{"code":"b","type":"codeVoice"},{"type":"text","text":" in place."}],"type":"topic","url":"\/documentation\/bigint\/bigint\/*=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","title":"*=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/*=(_:_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" in place.","type":"text"}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","interfaceLanguage":"swift"},"metadata":{"title":"*=(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:6BigIntAAV2meoiyyABz_ABtFZ","symbolKind":"op","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/*=(_:_:)":{"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" in place.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/*=(_:_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","type":"topic","title":"*=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/+(_:).json b/docs/data/documentation/bigint/bigint/+(_:).json index fbb21ef..f2aa3de 100644 --- a/docs/data/documentation/bigint/bigint/+(_:).json +++ b/docs/data/documentation/bigint/bigint/+(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)"},"metadata":{"role":"symbol","externalID":"s:s18AdditiveArithmeticPsE1popyxxFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","title":"+(_:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/+(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"AdditiveArithmetic.+(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"AdditiveArithmetic Implementations","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/+(_:)":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","url":"\/documentation\/bigint\/bigint\/+(_:)","title":"+(_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"metadata":{"externalID":"s:s18AdditiveArithmeticPsE1popyxxFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","symbolKind":"op","title":"+(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/+(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"AdditiveArithmetic.+(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/+(_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","title":"+(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/+(_:)","role":"symbol","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/+(_:_:).json b/docs/data/documentation/bigint/bigint/+(_:_:).json index a582081..bfacbf8 100644 --- a/docs/data/documentation/bigint/bigint/+(_:_:).json +++ b/docs/data/documentation/bigint/bigint/+(_:_:).json @@ -1 +1 @@ -{"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV1poiyA2B_ABtFZ","roleHeading":"Operator","extendedModule":"BigInt","title":"+(_:_:)","symbolKind":"op","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/+(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/+(_:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"title":"+(_:_:)","url":"\/documentation\/bigint\/bigint\/+(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","abstract":[{"type":"text","text":"Add "},{"code":"a","type":"codeVoice"},{"type":"text","text":" to "},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the result."}],"kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/+(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" to "},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"role":"symbol","title":"+(_:_:)","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"modules":[{"name":"BigInt"}],"roleHeading":"Operator","extendedModule":"BigInt","externalID":"s:6BigIntAAV1poiyA2B_ABtFZ"},"references":{"doc://BigInt/documentation/BigInt/BigInt/+(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"title":"+(_:_:)","kind":"symbol","type":"topic","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" to ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/+(_:_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/+=(_:_:)-3y6od.json b/docs/data/documentation/bigint/bigint/+=(_:_:)-3y6od.json index 814f1b6..075bf5f 100644 --- a/docs/data/documentation/bigint/bigint/+=(_:_:)-3y6od.json +++ b/docs/data/documentation/bigint/bigint/+=(_:_:)-3y6od.json @@ -1 +1 @@ -{"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"+=(_:_:)","extendedModule":"Swift","externalID":"s:s18AdditiveArithmeticPsE2peoiyyxz_xtFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","role":"symbol","symbolKind":"op"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"AdditiveArithmetic.+=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"AdditiveArithmetic Implementations","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-3y6od":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od","title":"+=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"AdditiveArithmetic.+=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"externalID":"s:s18AdditiveArithmeticPsE2peoiyyxz_xtFZ::SYNTHESIZED::s:6BigIntAAV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"extendedModule":"Swift","role":"symbol","roleHeading":"Operator","title":"+=(_:_:)","symbolKind":"op"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-3y6od":{"url":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","role":"symbol","abstract":[],"title":"+=(_:_:)","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/+=(_:_:)-4p7tb.json b/docs/data/documentation/bigint/bigint/+=(_:_:)-4p7tb.json index 9799967..6522262 100644 --- a/docs/data/documentation/bigint/bigint/+=(_:_:)-4p7tb.json +++ b/docs/data/documentation/bigint/bigint/+=(_:_:)-4p7tb.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" in place.","type":"text"}],"metadata":{"symbolKind":"op","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"role":"symbol","modules":[{"name":"BigInt"}],"title":"+=(_:_:)","externalID":"s:6BigIntAAV2peoiyyABz_ABtFZ","roleHeading":"Operator"},"references":{"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-4p7tb":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","title":"+=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" in place.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"roleHeading":"Operator","externalID":"s:6BigIntAAV2peoiyyABz_ABtFZ","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"op","title":"+=(_:_:)","role":"symbol"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"platforms":["macOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","interfaceLanguage":"swift"},"abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-4p7tb":{"kind":"symbol","title":"+=(_:_:)","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/-(_:).json b/docs/data/documentation/bigint/bigint/-(_:).json index 7721a19..938e6fb 100644 --- a/docs/data/documentation/bigint/bigint/-(_:).json +++ b/docs/data/documentation/bigint/bigint/-(_:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"SignedNumeric.-(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"operand","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/-(_:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"-(_:)","symbolKind":"op","extendedModule":"Swift","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:s13SignedNumericPsE1sopyxxFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/-(_:)":{"abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/-(_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"title":"-(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","type":"topic","abstract":[],"title":"SignedNumeric Implementations"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"metadata":{"title":"-(_:)","roleHeading":"Operator","externalID":"s:s13SignedNumericPsE1sopyxxFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","role":"symbol"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/-(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"operand"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]}],"kind":"declarations"}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"SignedNumeric.-(_:)"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"title":"SignedNumeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations"},"doc://BigInt/documentation/BigInt/BigInt/-(_:)":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/-(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)","title":"-(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/-(_:_:).json b/docs/data/documentation/bigint/bigint/-(_:_:).json index a6deabd..62347a2 100644 --- a/docs/data/documentation/bigint/bigint/-(_:_:).json +++ b/docs/data/documentation/bigint/bigint/-(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/-(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and return the result."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}]}]}],"metadata":{"role":"symbol","title":"-(_:_:)","roleHeading":"Operator","externalID":"s:6BigIntAAV1soiyA2B_ABtFZ","symbolKind":"op","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/-(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","role":"symbol","title":"-(_:_:)","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" from "},{"code":"a","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/-(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"languages":["swift"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV1soiyA2B_ABtFZ","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"role":"symbol","roleHeading":"Operator","title":"-(_:_:)"},"abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" and return the result."}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/-(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/-(_:_:)":{"type":"topic","title":"-(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"text":" and return the result.","type":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/-(_:_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/-=(_:_:)-9oena.json b/docs/data/documentation/bigint/bigint/-=(_:_:)-9oena.json index 41511b2..8c09719 100644 --- a/docs/data/documentation/bigint/bigint/-=(_:_:)-9oena.json +++ b/docs/data/documentation/bigint/bigint/-=(_:_:)-9oena.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"metadata":{"externalID":"s:6BigIntAAV2seoiyyABz_ABtFZ","role":"symbol","symbolKind":"op","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":"-=(_:_:)","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}]},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/-=(_:_:)-9oena"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9oena":{"kind":"symbol","title":"-=(_:_:)","role":"symbol","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena"}}} \ No newline at end of file +{"metadata":{"title":"-=(_:_:)","extendedModule":"BigInt","externalID":"s:6BigIntAAV2seoiyyABz_ABtFZ","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"symbolKind":"op","roleHeading":"Operator"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/-=(_:_:)-9oena"]}],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"text":" from ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" in place.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9oena":{"title":"-=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","kind":"symbol","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/-=(_:_:)-9ym7c.json b/docs/data/documentation/bigint/bigint/-=(_:_:)-9ym7c.json index 3b56c8a..ba83a0d 100644 --- a/docs/data/documentation/bigint/bigint/-=(_:_:)-9ym7c.json +++ b/docs/data/documentation/bigint/bigint/-=(_:_:)-9ym7c.json @@ -1 +1 @@ -{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AdditiveArithmetic.-=(_:_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c","interfaceLanguage":"swift"},"metadata":{"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}],"extendedModule":"Swift","externalID":"s:s18AdditiveArithmeticPsE2seoiyyxz_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"-=(_:_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"AdditiveArithmetic Implementations","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9ym7c":{"title":"-=(_:_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"AdditiveArithmetic.-=(_:_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c"]}],"kind":"symbol","metadata":{"title":"-=(_:_:)","extendedModule":"Swift","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"roleHeading":"Operator","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:s18AdditiveArithmeticPsE2seoiyyxz_xtFZ::SYNTHESIZED::s:6BigIntAAV"},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9ym7c":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","title":"-=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/==(_:_:)-4b64d.json b/docs/data/documentation/bigint/bigint/==(_:_:)-4b64d.json index 1106c0e..b3acc54 100644 --- a/docs/data/documentation/bigint/bigint/==(_:_:)-4b64d.json +++ b/docs/data/documentation/bigint/bigint/==(_:_:)-4b64d.json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.==(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-4b64d"]}],"metadata":{"role":"symbol","externalID":"s:SzsE2eeoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","title":"==(_:_:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-4b64d":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","kind":"symbol","title":"==(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"op","title":"==(_:_:)","roleHeading":"Operator","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:SzsE2eeoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-4b64d"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.==(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-4b64d":{"abstract":[],"title":"==(_:_:)","url":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/==(_:_:)-58vlr.json b/docs/data/documentation/bigint/bigint/==(_:_:)-58vlr.json index 9dac2b3..ea6e60a 100644 --- a/docs/data/documentation/bigint/bigint/==(_:_:)-58vlr.json +++ b/docs/data/documentation/bigint/bigint/==(_:_:)-58vlr.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Return true iff "},{"code":"a","type":"codeVoice"},{"type":"text","text":" is equal to "},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"kind":"symbol","sections":[],"metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"==(_:_:)","roleHeading":"Operator","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV2eeoiySbAB_ABtFZ","role":"symbol","extendedModule":"BigInt"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-58vlr"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","title":"Equatable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/equatable-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-58vlr":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","title":"==(_:_:)","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"text":" is equal to ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-58vlr"]}],"abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is equal to "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"metadata":{"title":"==(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"extendedModule":"BigInt","externalID":"s:6BigIntAAV2eeoiySbAB_ABtFZ","role":"symbol","roleHeading":"Operator","modules":[{"name":"BigInt"}],"symbolKind":"op"},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","kind":"article","abstract":[],"type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/equatable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-58vlr":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"==(_:_:)","type":"topic","abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" is equal to "},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"url":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","role":"symbol","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/==(_:_:)-7e1gm.json b/docs/data/documentation/bigint/bigint/==(_:_:)-7e1gm.json index c7aac3c..a735194 100644 --- a/docs/data/documentation/bigint/bigint/==(_:_:)-7e1gm.json +++ b/docs/data/documentation/bigint/bigint/==(_:_:)-7e1gm.json @@ -1 +1 @@ -{"metadata":{"title":"==(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SxsE2eeoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator"},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","title":"Equatable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/equatable-implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-7e1gm":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm","kind":"symbol","role":"symbol","title":"==(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Equatable.==(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"extendedModule":"Swift","roleHeading":"Operator","externalID":"s:SxsE2eeoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"==(_:_:)","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-7e1gm":{"url":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm","abstract":[],"type":"topic","title":"==(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigInt/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations","kind":"article","abstract":[],"type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/equatable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-1mrit.json b/docs/data/documentation/bigint/bigint/_(_:_:)-1mrit.json index 821af32..8e79530 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-1mrit.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-1mrit.json @@ -1 +1 @@ -{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit"},"metadata":{"role":"symbol","symbolKind":"op","modules":[{"name":"BigInt"}],"roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"extendedModule":"BigInt","externalID":"s:6BigIntAAV1loiySbAB_ABtFZ","title":"<(_:_:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-1mrit"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" is less than "},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-1mrit":{"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is less than "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","kind":"symbol","title":"<(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"metadata":{"externalID":"s:6BigIntAAV1loiySbAB_ABtFZ","roleHeading":"Operator","extendedModule":"BigInt","title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"BigInt"}],"symbolKind":"op","role":"symbol"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" is less than ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-1mrit"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-1mrit":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","title":"<(_:_:)","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" is less than ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-218l1.json b/docs/data/documentation/bigint/bigint/_(_:_:)-218l1.json index 499e332..2aeee78 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-218l1.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-218l1.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-218l1"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SzsE1xoiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","symbolKind":"op","title":"^(_:_:)","role":"symbol","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.^(_:_:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1"},"references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-218l1":{"title":"^(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"op","title":"^(_:_:)","roleHeading":"Operator","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"externalID":"s:SzsE1xoiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-218l1"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.^(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-218l1":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","url":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","kind":"symbol","title":"^(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-3fs3d.json b/docs/data/documentation/bigint/bigint/_(_:_:)-3fs3d.json index c5532bb..b47e984 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-3fs3d.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-3fs3d.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"^"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV1xoiyA2Bz_ABtFZ","title":"^(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","symbolKind":"op","modules":[{"name":"BigInt"}]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-3fs3d":{"abstract":[],"type":"topic","title":"^(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"^"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","interfaceLanguage":"swift"},"metadata":{"symbolKind":"op","modules":[{"name":"BigInt"}],"title":"^(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"^"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"externalID":"s:6BigIntAAV1xoiyA2Bz_ABtFZ","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-3fs3d":{"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-3fs3d","url":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","role":"symbol","title":"^(_:_:)","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-4phsr.json b/docs/data/documentation/bigint/bigint/_(_:_:)-4phsr.json index 12aec64..cd75422 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-4phsr.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-4phsr.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","externalID":"s:SzsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","title":">(_:_:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-4phsr"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-4phsr":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","title":">(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"role":"symbol","externalID":"s:SzsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"extendedModule":"Swift","roleHeading":"Operator","title":">(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-4phsr"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable.>(_:_:)"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-4phsr":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","title":">(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-5dwi2.json b/docs/data/documentation/bigint/bigint/_(_:_:)-5dwi2.json index bfb4159..b84e75c 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-5dwi2.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-5dwi2.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Operator","role":"symbol","title":">(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SzsE1goiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5dwi2":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","type":"topic","abstract":[],"title":">(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}}} \ No newline at end of file +{"sections":[],"metadata":{"roleHeading":"Operator","extendedModule":"Swift","role":"symbol","symbolKind":"op","externalID":"s:SzsE1goiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":">(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>(_:_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5dwi2":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","title":">(_:_:)","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-5ex7h.json b/docs/data/documentation/bigint/bigint/_(_:_:)-5ex7h.json index 8def76e..2a53810 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-5ex7h.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-5ex7h.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h"},"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"<(_:_:)","extendedModule":"Swift","roleHeading":"Operator","externalID":"s:SzsE1loiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"op","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<(_:_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5ex7h":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<(_:_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"metadata":{"symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"externalID":"s:SzsE1loiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","extendedModule":"Swift","title":"<(_:_:)","roleHeading":"Operator"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5ex7h":{"abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","title":"<(_:_:)","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-7n20y.json b/docs/data/documentation/bigint/bigint/_(_:_:)-7n20y.json index 06eceb8..1e05c42 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-7n20y.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-7n20y.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.<(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-7n20y"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"<(_:_:)","symbolKind":"op","roleHeading":"Operator","extendedModule":"Swift","externalID":"s:SxsE1loiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-7n20y":{"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","url":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y","kind":"symbol","title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SxsE1loiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Operator","title":"<(_:_:)","symbolKind":"op","extendedModule":"Swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-7n20y"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"platforms":["macOS"]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.<(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-7n20y":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","abstract":[],"title":"<(_:_:)","type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-893s2.json b/docs/data/documentation/bigint/bigint/_(_:_:)-893s2.json index b12b4a9..224f8ee 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-893s2.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-893s2.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"extendedModule":"BigInt","roleHeading":"Operator","symbolKind":"op","role":"symbol","externalID":"s:6BigIntAAV1roiyA2B_ABtFZ","title":"%(_:_:)","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"abstract":[{"type":"text","text":"Divide "},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the remainder. The result has the same sign as "},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-893s2"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-893s2":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","title":"%(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"role":"symbol","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and return the remainder. The result has the same sign as ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-893s2"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the remainder. The result has the same sign as "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"sections":[],"metadata":{"externalID":"s:6BigIntAAV1roiyA2B_ABtFZ","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"roleHeading":"Operator","symbolKind":"op","role":"symbol","title":"%(_:_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-893s2":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","url":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","type":"topic","abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the remainder. The result has the same sign as "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"title":"%(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-8ph02.json b/docs/data/documentation/bigint/bigint/_(_:_:)-8ph02.json index c7a9767..ded9bb3 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-8ph02.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-8ph02.json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SLsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","symbolKind":"op","roleHeading":"Operator","title":">(_:_:)","extendedModule":"Swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-8ph02"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-8ph02":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":">(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"externalID":"s:SLsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"symbolKind":"op","title":">(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-8ph02"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02"},"references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-8ph02":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","abstract":[],"title":">(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-931w.json b/docs/data/documentation/bigint/bigint/_(_:_:)-931w.json index f7ef638..df5cffb 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-931w.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-931w.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.|(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-931w"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"|(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"externalID":"s:SzsE1ooiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"op","role":"symbol","roleHeading":"Operator","extendedModule":"Swift"},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-931w":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-931w","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","abstract":[],"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"kind":"symbol","title":"|(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.|(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-931w"]}],"metadata":{"externalID":"s:SzsE1ooiyxx_xtFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"|(_:_:)","symbolKind":"op","role":"symbol","roleHeading":"Operator"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-931w":{"abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","kind":"symbol","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-931w"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-9x9mk.json b/docs/data/documentation/bigint/bigint/_(_:_:)-9x9mk.json index 1146fea..3c92b44 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-9x9mk.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-9x9mk.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","symbolKind":"op","title":"\/(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV1doiyA2B_ABtFZ"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"text":" and return the quotient. Traps if ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" is zero.","type":"text"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-9x9mk":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"text":" and return the quotient. Traps if ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" is zero.","type":"text"}],"title":"\/(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"title":"\/(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","externalID":"s:6BigIntAAV1doiyA2B_ABtFZ","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"symbolKind":"op","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and return the quotient. Traps if ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" is zero.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-9x9mk":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the quotient. Traps if "},{"code":"b","type":"codeVoice"},{"type":"text","text":" is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","title":"\/(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_(_:_:)-ji3u.json b/docs/data/documentation/bigint/bigint/_(_:_:)-ji3u.json index 57e2f68..9b5b32e 100644 --- a/docs/data/documentation/bigint/bigint/_(_:_:)-ji3u.json +++ b/docs/data/documentation/bigint/bigint/_(_:_:)-ji3u.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u"},"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"roleHeading":"Operator","title":"|(_:_:)","symbolKind":"op","extendedModule":"BigInt","externalID":"s:6BigIntAAV1ooiyA2Bz_ABtFZ"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"|"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-ji3u"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-ji3u":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u","kind":"symbol","type":"topic","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_(_:_:)-ji3u"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"|(_:_:)","roleHeading":"Operator","symbolKind":"op","extendedModule":"BigInt","role":"symbol","externalID":"s:6BigIntAAV1ooiyA2Bz_ABtFZ","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-ji3u":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-ji3u","type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","title":"|(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-1pe5q.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-1pe5q.json index ece72ad..ac180eb 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-1pe5q.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-1pe5q.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Divide "},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" storing the remainder in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q"},"metadata":{"externalID":"s:6BigIntAAV2reoiyyABz_ABtFZ","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"%=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"roleHeading":"Operator","symbolKind":"op","extendedModule":"BigInt","title":"%=(_:_:)","role":"symbol","modules":[{"name":"BigInt"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-1pe5q":{"title":"%=(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" storing the remainder in "},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","interfaceLanguage":"swift"},"metadata":{"externalID":"s:6BigIntAAV2reoiyyABz_ABtFZ","roleHeading":"Operator","title":"%=(_:_:)","extendedModule":"BigInt","role":"symbol","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Divide "},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" storing the remainder in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-1pe5q":{"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" storing the remainder in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","type":"topic","title":"%=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-2iz5t.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-2iz5t.json index 5a86e31..da35c10 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-2iz5t.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-2iz5t.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Operator","title":">=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:SzsE2geoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>=(_:_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2iz5t":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","role":"symbol","title":">=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"kind":"symbol","sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":">=(_:_:)","symbolKind":"op","externalID":"s:SzsE2geoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","role":"symbol","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>=(_:_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2iz5t":{"abstract":[],"title":">=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-2lggr.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-2lggr.json index 63b4ce3..a822f49 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-2lggr.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-2lggr.json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}],"kind":"declarations"}],"metadata":{"role":"symbol","extendedModule":"Swift","symbolKind":"op","externalID":"s:SLsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.<=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2lggr":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"roleHeading":"Operator","title":"<=(_:_:)","externalID":"s:SLsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"op"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2lggr":{"abstract":[],"title":"<=(_:_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-2vuuk.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-2vuuk.json index 2c6bcbe..24445c7 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-2vuuk.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-2vuuk.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.|=(_:_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk"},"metadata":{"externalID":"s:6BigIntAAV2oeoiyyABz_ABtFZ","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"|="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"title":"|=(_:_:)","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"symbolKind":"op","roleHeading":"Operator","role":"symbol"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"|=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2vuuk":{"abstract":[],"type":"topic","title":"|=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV2oeoiyyABz_ABtFZ","extendedModule":"BigInt","title":"|=(_:_:)","roleHeading":"Operator","modules":[{"name":"BigInt"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"|="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.|=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2vuuk":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","title":"|=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-2xo16.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-2xo16.json index 6180ed9..f906330 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-2xo16.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-2xo16.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16"},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"<=(_:_:)","role":"symbol","externalID":"s:SzsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator"},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2xo16":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16","title":"<=(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"Swift","externalID":"s:SzsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","symbolKind":"op","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"<=(_:_:)"},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2xo16":{"abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","role":"symbol","type":"topic","title":"<=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-60voa.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-60voa.json index 4defa3c..2aae827 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-60voa.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-60voa.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"metadata":{"extendedModule":"Swift","role":"symbol","externalID":"s:SLsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","title":">=(_:_:)","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>=(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-60voa"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-60voa":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":">=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SLsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Operator","title":">=(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"extendedModule":"Swift","symbolKind":"op"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-60voa"]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.>=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-60voa":{"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","type":"topic","title":">=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-6zl59.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-6zl59.json index f3911b9..29ab970 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-6zl59.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-6zl59.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","interfaceLanguage":"swift"},"sections":[],"metadata":{"role":"symbol","title":">=(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SzsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"roleHeading":"Operator"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>=(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-6zl59":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[],"type":"topic","title":">=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"abstract":[],"type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.>=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"]]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":">=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"extendedModule":"Swift","externalID":"s:SzsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"op"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-6zl59":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","title":">=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Comparable-Implementations":{"title":"Comparable Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/comparable-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-8ftd7.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-8ftd7.json index 03711db..97525d5 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-8ftd7.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-8ftd7.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","interfaceLanguage":"swift"},"metadata":{"externalID":"s:6BigIntAAV2deoiyyABz_ABtFZ","role":"symbol","symbolKind":"op","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":"\/=(_:_:)","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"\/=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" storing the quotient in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-8ftd7":{"title":"\/=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"\/=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","type":"topic","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" storing the quotient in ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"metadata":{"extendedModule":"BigInt","externalID":"s:6BigIntAAV2deoiyyABz_ABtFZ","roleHeading":"Operator","title":"\/=(_:_:)","symbolKind":"op","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}]},"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" storing the quotient in ","type":"text"},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"\/=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-8ftd7":{"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" storing the quotient in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","type":"topic","title":"\/=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-baha.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-baha.json index 2488b05..d4baea4 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-baha.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-baha.json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<=(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-baha"]}],"metadata":{"title":"<=(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SzsE2leoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-baha":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-baha"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"externalID":"s:SzsE2leoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","roleHeading":"Operator","extendedModule":"Swift","title":"<=(_:_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BigInt"}],"abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","navigatorTitle":[{"kind":"identifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","title":"BinaryInteger Implementations","abstract":[],"kind":"article"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-baha":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","kind":"symbol","role":"symbol","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/_=(_:_:)-jxj9.json b/docs/data/documentation/bigint/bigint/_=(_:_:)-jxj9.json index 88be0b9..2e34123 100644 --- a/docs/data/documentation/bigint/bigint/_=(_:_:)-jxj9.json +++ b/docs/data/documentation/bigint/bigint/_=(_:_:)-jxj9.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.^=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"title":"^=(_:_:)","externalID":"s:6BigIntAAV2xeoiyyABz_ABtFZ","modules":[{"name":"BigInt"}],"symbolKind":"op","roleHeading":"Operator","extendedModule":"BigInt","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-jxj9":{"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"^="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"title":"^=(_:_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9"},"kind":"symbol","metadata":{"roleHeading":"Operator","symbolKind":"op","title":"^=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":")"}],"extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV2xeoiyyABz_ABtFZ"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.^=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-jxj9":{"title":"^=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__(_:_:)-2x8fw.json b/docs/data/documentation/bigint/bigint/__(_:_:)-2x8fw.json index 6505389..f146cd8 100644 --- a/docs/data/documentation/bigint/bigint/__(_:_:)-2x8fw.json +++ b/docs/data/documentation/bigint/bigint/__(_:_:)-2x8fw.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"RHS","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw"]}],"sections":[],"metadata":{"title":"<<(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"externalID":"s:SzsE2lloiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-2x8fw":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","abstract":[],"title":"<<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.<<(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","interfaceLanguage":"swift"},"metadata":{"extendedModule":"Swift","roleHeading":"Operator","externalID":"s:SzsE2lloiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"<<(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-2x8fw":{"title":"<<(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__(_:_:)-46fpj.json b/docs/data/documentation/bigint/bigint/__(_:_:)-46fpj.json index 77fa5e8..6efb0ce 100644 --- a/docs/data/documentation/bigint/bigint/__(_:_:)-46fpj.json +++ b/docs/data/documentation/bigint/bigint/__(_:_:)-46fpj.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-46fpj"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"extendedModule":"Swift","externalID":"s:SzsE2ggoiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":">>(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>>(_:_:)"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-46fpj":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","title":">>(_:_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"title":">>(_:_:)","extendedModule":"Swift","symbolKind":"op","roleHeading":"Operator","externalID":"s:SzsE2ggoiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigIntAAV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-46fpj"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.>>(_:_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-46fpj":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","title":">>(_:_:)","url":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__(_:_:)-5frf5.json b/docs/data/documentation/bigint/bigint/__(_:_:)-5frf5.json index c191661..d66c133 100644 --- a/docs/data/documentation/bigint/bigint/__(_:_:)-5frf5.json +++ b/docs/data/documentation/bigint/bigint/__(_:_:)-5frf5.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"metadata":{"extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"title":">>(_:_:)","externalID":"s:6BigIntAAV2ggoiyA2B_xtSzRzlFZ","modules":[{"name":"BigInt"}],"symbolKind":"op","roleHeading":"Operator","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>>(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-5frf5"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5frf5":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"title":">>(_:_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"externalID":"s:6BigIntAAV2ggoiyA2B_xtSzRzlFZ","symbolKind":"op","title":">>(_:_:)","extendedModule":"BigInt","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-5frf5"]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5frf5":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","title":">>(_:_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__(_:_:)-5znu7.json b/docs/data/documentation/bigint/bigint/__(_:_:)-5znu7.json index d167dfe..4c22d00 100644 --- a/docs/data/documentation/bigint/bigint/__(_:_:)-5znu7.json +++ b/docs/data/documentation/bigint/bigint/__(_:_:)-5znu7.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-5znu7"]}],"metadata":{"symbolKind":"op","extendedModule":"BigInt","title":"<<(_:_:)","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV2lloiyA2B_xtSzRzlFZ","roleHeading":"Operator","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5znu7":{"title":"<<(_:_:)","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__(_:_:)-5znu7"]}],"kind":"symbol","metadata":{"externalID":"s:6BigIntAAV2lloiyA2B_xtSzRzlFZ","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"role":"symbol","title":"<<(_:_:)","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"symbolKind":"op"},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5znu7":{"title":"<<(_:_:)","type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__=(_:_:)-5hyf9.json b/docs/data/documentation/bigint/bigint/__=(_:_:)-5hyf9.json index 76e4184..ef32fa3 100644 --- a/docs/data/documentation/bigint/bigint/__=(_:_:)-5hyf9.json +++ b/docs/data/documentation/bigint/bigint/__=(_:_:)-5hyf9.json @@ -1 +1 @@ -{"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"roleHeading":"Operator","extendedModule":"BigInt","title":"<<=(_:_:)","externalID":"s:6BigIntAAV3lleoiyyABz_xtSzRzlFZ","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"op"},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.<<=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5hyf9":{"type":"topic","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"<<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<<=(_:_:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}],"roleHeading":"Operator","externalID":"s:6BigIntAAV3lleoiyyABz_xtSzRzlFZ","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"op","title":"<<=(_:_:)","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5hyf9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","abstract":[],"title":"<<=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/__=(_:_:)-5mbbx.json b/docs/data/documentation/bigint/bigint/__=(_:_:)-5mbbx.json index ad32dc8..2a11455 100644 --- a/docs/data/documentation/bigint/bigint/__=(_:_:)-5mbbx.json +++ b/docs/data/documentation/bigint/bigint/__=(_:_:)-5mbbx.json @@ -1 +1 @@ -{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":">>=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigIntAAV3ggeoiyyABz_xtSzRzlFZ","symbolKind":"op","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>>=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5mbbx":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","title":">>=(_:_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.>>=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx"]}],"metadata":{"title":">>=(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:6BigIntAAV3ggeoiyyABz_xtSzRzlFZ","symbolKind":"op","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5mbbx":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","title":">>=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/additivearithmetic-implementations.json b/docs/data/documentation/bigint/bigint/additivearithmetic-implementations.json index 257143a..a80f0ea 100644 --- a/docs/data/documentation/bigint/bigint/additivearithmetic-implementations.json +++ b/docs/data/documentation/bigint/bigint/additivearithmetic-implementations.json @@ -1 +1 @@ -{"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"AdditiveArithmetic Implementations"},"kind":"article","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/additivearithmetic-implementations"]}],"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c"],"title":"Operators","generated":true,"anchor":"Operators"},{"title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero"],"generated":true,"anchor":"Type-Properties"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/zero":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"ExpressibleByIntegerLiteral"},{"text":".","type":"text"}]},"kind":"symbol","type":"topic","title":"zero","role":"symbol","url":"\/documentation\/bigint\/bigint\/zero","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-3y6od":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od","title":"+=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9ym7c":{"title":"-=(_:_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/+(_:)":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","url":"\/documentation\/bigint\/bigint\/+(_:)","title":"+(_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c"],"title":"Operators","anchor":"Operators","generated":true},{"anchor":"Type-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero"],"generated":true,"title":"Type Properties"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/additivearithmetic-implementations"]}],"metadata":{"title":"AdditiveArithmetic Implementations","role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}]},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-3y6od":{"url":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","role":"symbol","abstract":[],"title":"+=(_:_:)","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-3y6od"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/+(_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:)","title":"+(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/+(_:)","role":"symbol","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/zero":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"zero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/zero","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","title":"zero","abstract":[],"role":"symbol","conformance":{"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9ym7c":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","title":"-=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9ym7c"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/advanced(by:).json b/docs/data/documentation/bigint/bigint/advanced(by:).json index 6805c40..a807f62 100644 --- a/docs/data/documentation/bigint/bigint/advanced(by:).json +++ b/docs/data/documentation/bigint/bigint/advanced(by:).json @@ -1 +1 @@ -{"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"text":"Stride","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV6Stridea"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"externalID":"s:6BigIntAAV8advanced2byA2B_tF","symbolKind":"method","title":"advanced(by:)","extendedModule":"BigInt","roleHeading":"Instance Method","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"n","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","text":"Stride","preciseIdentifier":"s:6BigIntAAV6Stridea"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/advanced(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"self + n"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/advanced(by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","title":"advanced(by:)","abstract":[{"type":"text","text":"Returns "},{"code":"self + n","type":"codeVoice"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/advanced(by:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Stride","preciseIdentifier":"s:6BigIntAAV6Stridea"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"kind":"symbol","role":"symbol","type":"topic","abstract":[],"title":"BigInt.Stride","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Stride"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/stride"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"advanced","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"n","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV6Stridea","text":"Stride","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]}]}],"abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"self + n"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/advanced(by:)"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV6Stridea","text":"Stride","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"extendedModule":"BigInt","title":"advanced(by:)","role":"symbol","roleHeading":"Instance Method","externalID":"s:6BigIntAAV8advanced2byA2B_tF","modules":[{"name":"BigInt"}],"symbolKind":"method"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","abstract":[],"url":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","kind":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/advanced(by:)":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV6Stridea","kind":"typeIdentifier","text":"Stride"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","url":"\/documentation\/bigint\/bigint\/advanced(by:)","role":"symbol","title":"advanced(by:)","type":"topic","abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"self + n"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","kind":"article","title":"Strideable Implementations","abstract":[],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/binaryinteger-implementations.json b/docs/data/documentation/bigint/bigint/binaryinteger-implementations.json index 15279f5..cff8be2 100644 --- a/docs/data/documentation/bigint/bigint/binaryinteger-implementations.json +++ b/docs/data/documentation/bigint/bigint/binaryinteger-implementations.json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt"}],"title":"BinaryInteger Implementations","role":"collectionGroup","roleHeading":"API Collection"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/binaryinteger-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","schemaVersion":{"major":0,"patch":0,"minor":3},"topicSections":[{"title":"Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"],"anchor":"Structures","generated":true},{"anchor":"Operators","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)"],"title":"Operators"},{"anchor":"Initializers","title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)"],"generated":true},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"],"anchor":"Instance-Properties","title":"Instance Properties","generated":true},{"generated":true,"anchor":"Instance-Methods","title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-1tkgl":{"type":"topic","kind":"symbol","abstract":[],"title":"init(_:strategy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-17mqt":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","abstract":[],"url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","kind":"symbol","title":"init(_:format:lenient:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-893s2":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","title":"%(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"role":"symbol","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and return the remainder. The result has the same sign as ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-1pe5q":{"title":"%=(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" storing the remainder in "},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/*(_:_:)":{"kind":"symbol","title":"*(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/*(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" with "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-8ftd7":{"title":"\/=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"\/=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","type":"topic","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" storing the quotient in ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5dwi2":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","type":"topic","abstract":[],"title":">(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-76a2j":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"text":"Currency","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","title":"init(_:format:lenient:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/quotientAndRemainder(dividingBy:)":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)","title":"quotientAndRemainder(dividingBy:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"quotientAndRemainder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", remainder","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"text":" and return the resulting quotient and remainder.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5hyf9":{"type":"topic","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"<<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9"},"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-4p7tb":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","title":"+=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" in place.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/words-swift.property":{"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.property","abstract":[],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"words","kind":"identifier"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV5WordsV","kind":"typeIdentifier","text":"Words"}],"title":"words","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-baha":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-up9u":{"kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:)-up9u","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","title":"init(_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/formatted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/formatted()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","title":"formatted()"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-mdcv":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"title":"formatted(_:)","url":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-4b64d":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","kind":"symbol","title":"==(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-3wz9u":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","title":"init(_:format:lenient:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","role":"symbol","abstract":[],"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Percent","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-2x8fw":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","abstract":[],"title":"<<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9xzsv":{"type":"topic","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/trailingZeroBitCount":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/trailingzerobitcount","abstract":[],"title":"trailingZeroBitCount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}]},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5mbbx":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","title":">>=(_:_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/init(truncatingIfNeeded:)":{"url":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","type":"topic","role":"symbol","abstract":[],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-4pcmu":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"role":"symbol","title":"init(_:strategy:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/+(_:_:)":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"title":"+(_:_:)","url":"\/documentation\/bigint\/bigint\/+(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","abstract":[{"type":"text","text":"Add "},{"code":"a","type":"codeVoice"},{"type":"text","text":" to "},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the result."}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/*=(_:_:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" with "},{"code":"b","type":"codeVoice"},{"type":"text","text":" in place."}],"type":"topic","url":"\/documentation\/bigint\/bigint\/*=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","title":"*=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2vuuk":{"abstract":[],"type":"topic","title":"|=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&=(_:_:)":{"title":"&=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/&=(_:_:)","type":"topic","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/-(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","role":"symbol","title":"-(_:_:)","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" from "},{"code":"a","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/-(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/init()-3wjrc":{"kind":"symbol","title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/init()-3wjrc","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(clamping:)":{"title":"init(clamping:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/init(clamping:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9oena":{"kind":"symbol","title":"-=(_:_:)","role":"symbol","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/~(_:)":{"kind":"symbol","title":"~(_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/~(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2iz5t":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","role":"symbol","title":">=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5ex7h":{"type":"topic","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5znu7":{"title":"<<(_:_:)","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5frf5":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"title":">>(_:_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-5b5sk":{"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","url":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk","title":"&(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-5oeld":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"abstract":[],"title":"formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-9x9mk":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","kind":"symbol","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"text":" and return the quotient. Traps if ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" is zero.","type":"text"}],"title":"\/(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-931w":{"url":"\/documentation\/bigint\/bigint\/_(_:_:)-931w","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","abstract":[],"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"kind":"symbol","title":"|(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-jxj9":{"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"^="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"title":"^=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2kj01":{"kind":"symbol","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","url":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-88g91":{"abstract":[],"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(exactly:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","url":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-218l1":{"title":"^(_:_:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-46fpj":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","title":">>(_:_:)","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj"},"doc://BigInt/documentation/BigInt/BigInt/bitWidth":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth","role":"symbol","url":"\/documentation\/bigint\/bigint\/bitwidth","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"abstract":[],"type":"topic","kind":"symbol","title":"bitWidth"},"doc://BigInt/documentation/BigInt/BigInt/isMultiple(of:)":{"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/ismultiple(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","title":"isMultiple(of:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-3bni3":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"title":"!=(_:_:)","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","role":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/binaryinteger-implementations"]}],"metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"role":"collectionGroup","title":"BinaryInteger Implementations"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"],"anchor":"Structures","title":"Structures"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)"],"title":"Operators","generated":true,"anchor":"Operators"},{"generated":true,"title":"Initializers","anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)"]},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"],"title":"Instance Properties","anchor":"Instance-Properties"},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)"],"anchor":"Instance-Methods","title":"Instance Methods"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/*(_:_:)":{"role":"symbol","type":"topic","abstract":[{"text":"Multiply ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*(_:_:)","url":"\/documentation\/bigint\/bigint\/*(_:_:)","kind":"symbol","title":"*(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-218l1":{"role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-218l1","url":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","kind":"symbol","title":"^(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5frf5":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5frf5","type":"topic","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","title":">>(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2vuuk":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2vuuk","type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","title":"|=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-4pcmu":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"kind":"symbol","title":"init(_:strategy:)"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-4b64d":{"abstract":[],"title":"==(_:_:)","url":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-4b64d","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-baha":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-baha","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","kind":"symbol","role":"symbol","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-88g91":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","title":"init(exactly:)","url":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/&=(_:_:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/&=(_:_:)","title":"&=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&=(_:_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2iz5t":{"abstract":[],"title":">=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2iz5t","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(clamping:)":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","title":"init(clamping:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(clamping:)"},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5mbbx":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5mbbx","title":">>=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-jxj9":{"title":"^=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-jxj9","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-up9u":{"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(_:)-up9u","title":"init(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/+=(_:_:)-4p7tb":{"kind":"symbol","title":"+=(_:_:)","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+=(_:_:)-4p7tb","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/&(_:_:)-5b5sk":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/&(_:_:)-5b5sk","title":"&(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk"},"doc://BigInt/documentation/BigInt/BigInt/__=(_:_:)-5hyf9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__=(_:_:)-5hyf9","url":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","abstract":[],"title":"<<=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/-=(_:_:)-9oena":{"title":"-=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-=(_:_:)-9oena","kind":"symbol","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" in place.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/trailingZeroBitCount":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"trailingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","title":"trailingZeroBitCount","kind":"symbol","url":"\/documentation\/bigint\/bigint\/trailingzerobitcount"},"doc://BigInt/documentation/BigInt/BigInt/+(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"title":"+(_:_:)","kind":"symbol","type":"topic","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" to ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/+(_:_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/+(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/words-swift.property":{"title":"words","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"words","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.property","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-931w":{"abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"|","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-931w","kind":"symbol","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-931w"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9xzsv":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9xzsv","title":"!=(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-5oeld":{"title":"formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/quotientAndRemainder(dividingBy:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", remainder","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Divide this integer by "},{"code":"y","type":"codeVoice"},{"text":" and return the resulting quotient and remainder.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)","title":"quotientAndRemainder(dividingBy:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-3wz9u":{"title":"init(_:format:lenient:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-9x9mk":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the quotient. Traps if "},{"code":"b","type":"codeVoice"},{"type":"text","text":" is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-9x9mk","title":"\/(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-1tkgl":{"title":"init(_:strategy:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5ex7h":{"abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5ex7h","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","title":"<(_:_:)","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/-(_:_:)":{"type":"topic","title":"-(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"text":" and return the result.","type":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/-(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/init()-3wjrc":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","title":"init()","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init()-3wjrc"},"doc://BigInt/documentation/BigInt/BigInt/bitWidth":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"bitWidth","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/bitwidth","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth"},"doc://BigInt/documentation/BigInt/BigInt/init(truncatingIfNeeded:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","type":"topic","title":"init(truncatingIfNeeded:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"truncatingIfNeeded","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-1pe5q":{"abstract":[{"text":"Divide ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" storing the remainder in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-1pe5q","type":"topic","title":"%=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/*=(_:_:)":{"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" with ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" in place.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/*=(_:_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/*=(_:_:)","type":"topic","title":"*=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-8ftd7":{"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"text":" by ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" storing the quotient in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-8ftd7","type":"topic","title":"\/=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/~(_:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/~(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)","type":"topic","title":"~(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"~"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-5dwi2":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-5dwi2","title":">(_:_:)","url":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/isMultiple(of:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/ismultiple(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMultiple"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"isMultiple(of:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/formatted()":{"title":"formatted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/formatted()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-17mqt":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-2x8fw":{"title":"<<(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-2x8fw","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-893s2":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-893s2","url":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","type":"topic","abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the remainder. The result has the same sign as "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"title":"%(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-3bni3":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-3bni3","title":"!=(_:_:)","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-76a2j":{"title":"init(_:format:lenient:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","kind":"typeIdentifier","text":"Currency"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-46fpj":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-46fpj","title":">>(_:_:)","url":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2kj01":{"title":"init(_:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-mdcv":{"url":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","type":"topic","title":"formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"role":"symbol","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/__(_:_:)-5znu7":{"title":"<<(_:_:)","type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/__(_:_:)-5znu7","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/bitwidth.json b/docs/data/documentation/bigint/bigint/bitwidth.json index f834d35..47ab7bf 100644 --- a/docs/data/documentation/bigint/bigint/bitwidth.json +++ b/docs/data/documentation/bigint/bigint/bitwidth.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/bitwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.bitWidth"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}]}],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"title":"bitWidth","modules":[{"name":"BigInt"}],"roleHeading":"Instance Property","symbolKind":"property","externalID":"s:6BigIntAAV8bitWidthSivp","extendedModule":"BigInt"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/bitWidth":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth","role":"symbol","url":"\/documentation\/bigint\/bigint\/bitwidth","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"abstract":[],"type":"topic","kind":"symbol","title":"bitWidth"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","sections":[],"metadata":{"roleHeading":"Instance Property","role":"symbol","extendedModule":"BigInt","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"externalID":"s:6BigIntAAV8bitWidthSivp","symbolKind":"property","modules":[{"name":"BigInt"}],"title":"bitWidth"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.bitWidth"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/bitwidth"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/bitWidth":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"bitWidth","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/bitwidth","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/bitWidth"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/comparable-implementations.json b/docs/data/documentation/bigint/bigint/comparable-implementations.json index 605a3a4..69119ab 100644 --- a/docs/data/documentation/bigint/bigint/comparable-implementations.json +++ b/docs/data/documentation/bigint/bigint/comparable-implementations.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"anchor":"Operators","generated":true,"title":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59"]}],"metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"Comparable Implementations","role":"collectionGroup"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/comparable-implementations"]}],"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-6zl59":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[],"type":"topic","title":">=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-8y2pm":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","abstract":[],"title":"...(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-1mrit":{"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is less than "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","kind":"symbol","title":"<(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-4phsr":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","title":">(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2lggr":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2xo16":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16","title":"<=(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/...(_:_:)":{"type":"topic","url":"\/documentation\/bigint\/bigint\/'...(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"ClosedRange","kind":"typeIdentifier","preciseIdentifier":"s:SN"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"...(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-5iv7x":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x","title":"...(_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-7n20y":{"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","url":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y","kind":"symbol","title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/'.._(_:_:)","title":"..<(_:_:)","type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-8ph02":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":">(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/.._(_:)":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s16PartialRangeUpToV","kind":"typeIdentifier","text":"PartialRangeUpTo"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/'.._(_:)","title":"..<(_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-60voa":{"type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":">=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","kind":"symbol","role":"symbol","abstract":[]}}} \ No newline at end of file +{"sections":[],"metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"Comparable Implementations","role":"collectionGroup"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/comparable-implementations"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Comparable-Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","topicSections":[{"generated":true,"anchor":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59"],"title":"Operators"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-60voa":{"url":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-60voa","type":"topic","title":">=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-8ph02":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-8ph02","abstract":[],"title":">(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'.._(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"kind":"symbol","title":"..<(_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-5iv7x":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-5iv7x","abstract":[],"title":"...(_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x"},"doc://BigInt/documentation/BigInt/BigInt/.._(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/.._(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/'.._(_:_:)","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol","title":"..<(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2lggr":{"abstract":[],"title":"<=(_:_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2lggr","kind":"symbol","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-6zl59":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-6zl59","type":"topic","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","title":">=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/_=(_:_:)-2xo16":{"abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_=(_:_:)-2xo16","role":"symbol","type":"topic","title":"<=(_:_:)","url":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16"},"doc://BigInt/documentation/BigInt/BigInt/...(_:_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:_:)","abstract":[],"title":"...(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/'...(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-1mrit":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-1mrit","title":"<(_:_:)","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" is less than ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-4phsr":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-4phsr","title":">(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/_(_:_:)-7n20y":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/_(_:_:)-7n20y","abstract":[],"title":"<(_:_:)","type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y"},"doc://BigInt/documentation/BigInt/BigInt/...(_:)-8y2pm":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/...(_:)-8y2pm","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s16PartialRangeFromV","text":"PartialRangeFrom","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"...(_:)","url":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations.json b/docs/data/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations.json index 602aae9..821de5d 100644 --- a/docs/data/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations.json +++ b/docs/data/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations.json @@ -1 +1 @@ -{"metadata":{"title":"CustomPlaygroundDisplayConvertible Implementations","role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}]},"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription"],"anchor":"Instance-Properties","generated":true,"title":"Instance Properties"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/playgroundDescription":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","role":"symbol","title":"playgroundDescription","type":"topic","abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"kind":"text","text":": "},{"text":"Any","kind":"keyword"}],"url":"\/documentation\/bigint\/bigint\/playgrounddescription"}}} \ No newline at end of file +{"topicSections":[{"generated":true,"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription"],"anchor":"Instance-Properties"}],"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}],"title":"CustomPlaygroundDisplayConvertible Implementations"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/playgroundDescription":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","type":"topic","abstract":[{"type":"text","text":"Return the playground quick look representation of this integer."}],"url":"\/documentation\/bigint\/bigint\/playgrounddescription","role":"symbol","title":"playgroundDescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/customstringconvertible-implementations.json b/docs/data/documentation/bigint/bigint/customstringconvertible-implementations.json index d070c08..7b8da29 100644 --- a/docs/data/documentation/bigint/bigint/customstringconvertible-implementations.json +++ b/docs/data/documentation/bigint/bigint/customstringconvertible-implementations.json @@ -1 +1 @@ -{"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"],"generated":true,"anchor":"Instance-Properties","title":"Instance Properties"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"CustomStringConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/customstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/description":{"url":"\/documentation\/bigint\/bigint\/description","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"kind":"symbol","role":"symbol","abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"title":"description","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/customstringconvertible-implementations"]}],"kind":"article","metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"CustomStringConvertible Implementations"},"topicSections":[{"anchor":"Instance-Properties","title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"],"generated":true}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/description":{"abstract":[{"type":"text","text":"Return the decimal representation of this integer."}],"role":"symbol","title":"description","url":"\/documentation\/bigint\/bigint\/description","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"description","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/decodable-implementations.json b/docs/data/documentation/bigint/bigint/decodable-implementations.json index 96ef80f..fe20f89 100644 --- a/docs/data/documentation/bigint/bigint/decodable-implementations.json +++ b/docs/data/documentation/bigint/bigint/decodable-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/decodable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","interfaceLanguage":"swift"},"kind":"article","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)"],"anchor":"Initializers","title":"Initializers","generated":true}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"Decodable Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic","title":"init(from:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(from:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","metadata":{"modules":[{"name":"BigInt"}],"title":"Decodable Implementations","role":"collectionGroup","roleHeading":"API Collection"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)"],"anchor":"Initializers","generated":true}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/decodable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)","title":"init(from:)","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"text":": any ","kind":"text"},{"preciseIdentifier":"s:s7DecoderP","text":"Decoder","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"kind":"symbol","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/init(from:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/description.json b/docs/data/documentation/bigint/bigint/description.json index 28a5399..7126047 100644 --- a/docs/data/documentation/bigint/bigint/description.json +++ b/docs/data/documentation/bigint/bigint/description.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"description","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"extendedModule":"BigInt","externalID":"s:6BigIntAAV11descriptionSSvp","role":"symbol","roleHeading":"Instance Property","symbolKind":"property","title":"description","modules":[{"name":"BigInt"}]},"abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"description","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/CustomStringConvertible-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","title":"CustomStringConvertible Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/description":{"url":"\/documentation\/bigint\/bigint\/description","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"kind":"symbol","role":"symbol","abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"title":"description","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"description","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations"]]},"kind":"symbol","sections":[],"metadata":{"symbolKind":"property","title":"description","roleHeading":"Instance Property","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"description","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"externalID":"s:6BigIntAAV11descriptionSSvp"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/description":{"abstract":[{"type":"text","text":"Return the decimal representation of this integer."}],"role":"symbol","title":"description","url":"\/documentation\/bigint\/bigint\/description","kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"description","kind":"identifier"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/description"},"doc://BigInt/documentation/BigInt/BigInt/CustomStringConvertible-Implementations":{"url":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomStringConvertible-Implementations","abstract":[],"type":"topic","title":"CustomStringConvertible Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/distance(to:).json b/docs/data/documentation/bigint/bigint/distance(to:).json index 8f1b037..f1dd242 100644 --- a/docs/data/documentation/bigint/bigint/distance(to:).json +++ b/docs/data/documentation/bigint/bigint/distance(to:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"other - self"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Stride","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV6Stridea"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/distance(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"distance"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV6Stridea","text":"Stride"}],"modules":[{"name":"BigInt"}],"role":"symbol","externalID":"s:6BigIntAAV8distance2toA2B_tF","title":"distance(to:)","roleHeading":"Instance Method"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/distance(to:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"other - self"},{"type":"text","text":"."}],"type":"topic","title":"distance(to:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV6Stridea","text":"Stride","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"kind":"symbol","role":"symbol","type":"topic","abstract":[],"title":"BigInt.Stride","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Stride"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/stride"},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/distance(to:)"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","preciseIdentifier":"s:6BigIntAAV6Stridea","kind":"typeIdentifier","text":"Stride"}],"languages":["swift"]}]}],"metadata":{"title":"distance(to:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Method","externalID":"s:6BigIntAAV8distance2toA2B_tF","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Stride","preciseIdentifier":"s:6BigIntAAV6Stridea"}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"other - self"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/distance(to:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"distance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"text":"Stride","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV6Stridea"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","url":"\/documentation\/bigint\/bigint\/distance(to:)","role":"symbol","title":"distance(to:)","type":"topic","abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"other - self"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","abstract":[],"url":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","kind":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}]},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","kind":"article","title":"Strideable Implementations","abstract":[],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/encodable-implementations.json b/docs/data/documentation/bigint/bigint/encodable-implementations.json index 84305c8..23bef42 100644 --- a/docs/data/documentation/bigint/bigint/encodable-implementations.json +++ b/docs/data/documentation/bigint/bigint/encodable-implementations.json @@ -1 +1 @@ -{"sections":[],"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)"],"anchor":"Instance-Methods","generated":true,"title":"Instance Methods"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/encodable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"collectionGroup","title":"Encodable Implementations","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/encode(to:)":{"kind":"symbol","role":"symbol","title":"encode(to:)","url":"\/documentation\/bigint\/bigint\/encode(to:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}],"title":"Encodable Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"title":"Instance Methods","generated":true,"anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/encodable-implementations"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/encode(to:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/encode(to:)","title":"encode(to:)","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"kind":"text","text":": any "},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/encode(to:).json b/docs/data/documentation/bigint/bigint/encode(to:).json index fa1dd3a..5261f45 100644 --- a/docs/data/documentation/bigint/bigint/encode(to:).json +++ b/docs/data/documentation/bigint/bigint/encode(to:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Encodable.encode(to:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"encoder","kind":"internalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP","text":"Encoder"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"title":"encode(to:)","role":"symbol","extendedModule":"BigInt","externalID":"s:6BigIntAAV6encode2toys7Encoder_p_tKF","roleHeading":"Instance Method"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/encode(to:)"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Encodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","url":"\/documentation\/bigint\/bigint\/encodable-implementations","title":"Encodable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/encode(to:)":{"kind":"symbol","role":"symbol","title":"encode(to:)","url":"\/documentation\/bigint\/bigint\/encode(to:)","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"encode"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"encode(to:)","extendedModule":"BigInt","symbolKind":"method","roleHeading":"Instance Method","externalID":"s:6BigIntAAV6encode2toys7Encoder_p_tKF","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/encode(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"encode"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"encoder","kind":"internalParam"},{"kind":"text","text":": any "},{"preciseIdentifier":"s:s7EncoderP","text":"Encoder","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Encodable.encode(to:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Encodable-Implementations":{"title":"Encodable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Encodable-Implementations","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/encodable-implementations"},"doc://BigInt/documentation/BigInt/BigInt/encode(to:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/encode(to:)","title":"encode(to:)","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/encode(to:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"kind":"text","text":": any "},{"text":"Encoder","kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/equatable-implementations.json b/docs/data/documentation/bigint/bigint/equatable-implementations.json index c3030f1..ae821a2 100644 --- a/docs/data/documentation/bigint/bigint/equatable-implementations.json +++ b/docs/data/documentation/bigint/bigint/equatable-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"},"kind":"article","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm"],"title":"Operators","generated":true,"anchor":"Operators"}],"metadata":{"title":"Equatable Implementations","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"role":"collectionGroup"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-58vlr":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","title":"==(_:_:)","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"text":" is equal to ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-7e1gm":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm","kind":"symbol","role":"symbol","title":"==(_:_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9tuvb":{"url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","kind":"symbol","type":"topic","title":"!=(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Equatable-Implementations"},"topicSections":[{"generated":true,"anchor":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm"],"title":"Operators"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/equatable-implementations"]}],"metadata":{"title":"Equatable Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"kind":"article","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-58vlr":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"==(_:_:)","type":"topic","abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" is equal to "},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"url":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-58vlr","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/!=(_:_:)-9tuvb":{"kind":"symbol","abstract":[],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/!=(_:_:)-9tuvb"},"doc://BigInt/documentation/BigInt/BigInt/==(_:_:)-7e1gm":{"url":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/==(_:_:)-7e1gm","abstract":[],"type":"topic","title":"==(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations.json b/docs/data/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations.json index 82118b7..a3f6c1a 100644 --- a/docs/data/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations.json +++ b/docs/data/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"collectionGroup","modules":[{"name":"BigInt"}],"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","roleHeading":"API Collection"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","interfaceLanguage":"swift"},"kind":"article","topicSections":[{"title":"Initializers","anchor":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-8a7xe":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe","title":"init(extendedGraphemeClusterLiteral:)","url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","kind":"symbol","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa"},{"kind":"text","text":")"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"text":" is ","type":"text"},{"code":"Self.StringLiteralType","type":"codeVoice"},{"type":"text","text":"."}]}},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-4wrre":{"role":"symbol","abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre","type":"topic","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations"]}],"metadata":{"roleHeading":"API Collection","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup"},"kind":"article","topicSections":[{"anchor":"Initializers","title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-8a7xe":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe","type":"topic","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"StringLiteralType","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-4wrre":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","kind":"symbol","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"text":" ","type":"text"},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/expressiblebyintegerliteral-implementations.json b/docs/data/documentation/bigint/bigint/expressiblebyintegerliteral-implementations.json index cad07f6..4844732 100644 --- a/docs/data/documentation/bigint/bigint/expressiblebyintegerliteral-implementations.json +++ b/docs/data/documentation/bigint/bigint/expressiblebyintegerliteral-implementations.json @@ -1 +1 @@ -{"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"ExpressibleByIntegerLiteral Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)"],"title":"Initializers","generated":true,"anchor":"Initializers"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(integerliteral:)","type":"topic","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"integerLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5Int64V","kind":"typeIdentifier","text":"Int64"},{"text":")","kind":"text"}],"abstract":[{"text":"Initialize a new big integer from an integer literal.","type":"text"}],"title":"init(integerLiteral:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"generated":true,"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)"],"anchor":"Initializers"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations"},"metadata":{"title":"ExpressibleByIntegerLiteral Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(integerliteral:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"type":"topic","abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)","kind":"symbol","title":"init(integerLiteral:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/expressiblebystringliteral-implementations.json b/docs/data/documentation/bigint/bigint/expressiblebystringliteral-implementations.json index 2631415..2be879f 100644 --- a/docs/data/documentation/bigint/bigint/expressiblebystringliteral-implementations.json +++ b/docs/data/documentation/bigint/bigint/expressiblebystringliteral-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"ExpressibleByStringLiteral Implementations","modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup"},"topicSections":[{"generated":true,"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)"],"anchor":"Initializers"}],"sections":[],"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(stringLiteral:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(stringliteral:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"text":": ","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length."},{"type":"text","text":" "},{"type":"text","text":"The string must contain only decimal digits."}],"type":"topic","kind":"symbol","title":"init(stringLiteral:)"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"anchor":"Initializers","title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)"],"generated":true}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations"},"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"ExpressibleByStringLiteral Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/init(stringLiteral:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(stringliteral:)","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"type":"text","text":" "},{"text":"The string must contain only decimal digits.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s17StringLiteralTypea","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"title":"init(stringLiteral:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations.json b/docs/data/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations.json index 3ac6199..493d29f 100644 --- a/docs/data/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations.json +++ b/docs/data/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"anchor":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)"],"title":"Initializers"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations"]}],"sections":[],"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"ExpressibleByUnicodeScalarLiteral Implementations"},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/init(unicodeScalarLiteral:)":{"type":"topic","abstract":[{"type":"text","text":"Initialize a new big integer from a Unicode scalar."},{"text":" ","type":"text"},{"text":"The scalar must represent a decimal digit.","type":"text"}],"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(unicodeScalarLiteral:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations"},"topicSections":[{"title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)"],"anchor":"Initializers"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/init(unicodeScalarLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"text":"UnicodeScalar","kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)","kind":"symbol","type":"topic","role":"symbol","title":"init(unicodeScalarLiteral:)","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The scalar must represent a decimal digit."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/formatted().json b/docs/data/documentation/bigint/bigint/formatted().json index fc5630c..9ee0630 100644 --- a/docs/data/documentation/bigint/bigint/formatted().json +++ b/docs/data/documentation/bigint/bigint/formatted().json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/formatted()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.formatted()","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"iOS"},{"beta":false,"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0"},{"beta":false,"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"tvOS"},{"deprecated":false,"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"8.0"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE9formattedSSyF::SYNTHESIZED::s:6BigIntAAV","role":"symbol","title":"formatted()","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/formatted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/formatted()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","title":"formatted()"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"roleHeading":"Instance Method","title":"formatted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"role":"symbol","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"platforms":[{"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false,"beta":false},{"name":"macOS","introducedAt":"12.0","unavailable":false,"beta":false,"deprecated":false},{"beta":false,"introducedAt":"15.0","deprecated":false,"name":"tvOS","unavailable":false},{"deprecated":false,"introducedAt":"8.0","beta":false,"name":"watchOS","unavailable":false}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE9formattedSSyF::SYNTHESIZED::s:6BigIntAAV"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.formatted()","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/formatted()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/formatted()":{"title":"formatted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/formatted()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted()","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/formatted(_:)-5oeld.json b/docs/data/documentation/bigint/bigint/formatted(_:)-5oeld.json index ede6600..e984985 100644 --- a/docs/data/documentation/bigint/bigint/formatted(_:)-5oeld.json +++ b/docs/data/documentation/bigint/bigint/formatted(_:)-5oeld.json @@ -1 +1 @@ -{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"roleHeading":"Instance Method","platforms":[{"deprecated":false,"unavailable":false,"name":"iOS","introducedAt":"15.0","beta":false},{"name":"macOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"12.0"},{"beta":false,"unavailable":false,"name":"tvOS","introducedAt":"15.0","deprecated":false},{"beta":false,"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false}],"extendedModule":"Swift","title":"formatted(_:)","role":"symbol","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__AA0C5StyleRd__Sz0C5InputRpd__lF::SYNTHESIZED::s:6BigIntAAV"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/formatted(_:)-5oeld"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.formatted(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"format","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation11FormatStyleP","kind":"typeIdentifier","text":"FormatStyle"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","text":"FormatInput"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-5oeld":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"abstract":[],"title":"formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","interfaceLanguage":"swift"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/formatted(_:)-5oeld"]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"role":"symbol","title":"formatted(_:)","externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__AA0C5StyleRd__Sz0C5InputRpd__lF::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","roleHeading":"Instance Method","platforms":[{"unavailable":false,"introducedAt":"15.0","beta":false,"deprecated":false,"name":"iOS"},{"beta":false,"introducedAt":"12.0","deprecated":false,"name":"macOS","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0"},{"unavailable":false,"introducedAt":"8.0","beta":false,"name":"watchOS","deprecated":false}],"symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.formatted(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation11FormatStyleP","kind":"typeIdentifier","text":"FormatStyle"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatInput","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-5oeld":{"title":"formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-5oeld","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/formatted(_:)-mdcv.json b/docs/data/documentation/bigint/bigint/formatted(_:)-mdcv.json index fd6eb7b..44c471a 100644 --- a/docs/data/documentation/bigint/bigint/formatted(_:)-mdcv.json +++ b/docs/data/documentation/bigint/bigint/formatted(_:)-mdcv.json @@ -1 +1 @@ -{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.formatted(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","interfaceLanguage":"swift"},"metadata":{"role":"symbol","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"beta":false,"deprecated":false,"introducedAt":"12.0","name":"macOS","unavailable":false},{"unavailable":false,"name":"tvOS","beta":false,"deprecated":false,"introducedAt":"15.0"},{"deprecated":false,"name":"watchOS","introducedAt":"8.0","unavailable":false,"beta":false}],"externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigIntAAV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"formatted(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/formatted(_:)-mdcv"]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"format","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","text":"FormatInput","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"FormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-mdcv":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"title":"formatted(_:)","url":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/formatted(_:)-mdcv"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"format","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","text":"FormatInput"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"FormatStyle","preciseIdentifier":"s:10Foundation11FormatStyleP"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","metadata":{"platforms":[{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"introducedAt":"12.0","unavailable":false,"beta":false},{"name":"tvOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0"},{"name":"watchOS","introducedAt":"8.0","deprecated":false,"beta":false,"unavailable":false}],"externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigIntAAV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"role":"symbol","title":"formatted(_:)","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.formatted(_:)"},{"type":"text","text":"."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/formatted(_:)-mdcv":{"url":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/formatted(_:)-mdcv","type":"topic","title":"formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"role":"symbol","kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/greatestcommondivisor(with:).json b/docs/data/documentation/bigint/bigint/greatestcommondivisor(with:).json index 9e10982..a6a059e 100644 --- a/docs/data/documentation/bigint/bigint/greatestcommondivisor(with:).json +++ b/docs/data/documentation/bigint/bigint/greatestcommondivisor(with:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"content":[{"inlineContent":[{"text":"O(count^2) where count = max(a.count, b.count)","type":"text"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}],"kind":"content"}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Method","title":"greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV21greatestCommonDivisor4withA2B_tF","symbolKind":"method","role":"symbol"},"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"code":"a","type":"codeVoice"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)"]}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/greatestCommonDivisor(with:)":{"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","title":"greatestCommonDivisor(with:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"style":"note","content":[{"inlineContent":[{"type":"text","text":"O(count^2) where count = max(a.count, b.count)"}],"type":"paragraph"}],"name":"Complexity","type":"aside"}],"kind":"content"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"externalID":"s:6BigIntAAV21greatestCommonDivisor4withA2B_tF","extendedModule":"BigInt","roleHeading":"Instance Method","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"method","title":"greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"with"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/greatestCommonDivisor(with:)":{"role":"symbol","title":"greatestCommonDivisor(with:)","abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"code":"a","type":"codeVoice"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/greatestCommonDivisor(with:)","type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/hash(into:).json b/docs/data/documentation/bigint/bigint/hash(into:).json index 1c28578..8cf3806 100644 --- a/docs/data/documentation/bigint/bigint/hash(into:).json +++ b/docs/data/documentation/bigint/bigint/hash(into:).json @@ -1 +1 @@ -{"sections":[],"metadata":{"extendedModule":"BigInt","roleHeading":"Instance Method","externalID":"s:6BigIntAAV4hash4intoys6HasherVz_tF","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"role":"symbol","symbolKind":"method","modules":[{"name":"BigInt"}],"title":"hash(into:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"text":"hasher","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:s6HasherV","text":"Hasher","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"abstract":[{"type":"text","text":"Append this "},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":" to the specified hasher."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt","role":"collection","url":"\/documentation\/bigint","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Hashable-Implementations":{"url":"\/documentation\/bigint\/bigint\/hashable-implementations","abstract":[],"title":"Hashable Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","type":"topic","role":"collectionGroup","kind":"article"},"doc://BigInt/documentation/BigInt/BigInt/hash(into:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)","url":"\/documentation\/bigint\/bigint\/hash(into:)","abstract":[{"type":"text","text":"Append this "},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":" to the specified hasher."}],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"title":"hash(into:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"hash(into:)","roleHeading":"Instance Method","extendedModule":"BigInt","externalID":"s:6BigIntAAV4hash4intoys6HasherVz_tF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Hasher","preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"symbolKind":"method","role":"symbol"},"abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"text":" to the specified hasher.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"hasher"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Hashable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","type":"topic","abstract":[],"title":"Hashable Implementations","url":"\/documentation\/bigint\/bigint\/hashable-implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/hash(into:)":{"url":"\/documentation\/bigint\/bigint\/hash(into:)","title":"hash(into:)","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"text":" to the specified hasher.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier","text":"Hasher"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/hashable-implementations.json b/docs/data/documentation/bigint/bigint/hashable-implementations.json index b9b65db..e079487 100644 --- a/docs/data/documentation/bigint/bigint/hashable-implementations.json +++ b/docs/data/documentation/bigint/bigint/hashable-implementations.json @@ -1 +1 @@ -{"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)"],"generated":true,"anchor":"Instance-Methods"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/hashable-implementations"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"Hashable Implementations","role":"collectionGroup"},"kind":"article","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/hash(into:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)","url":"\/documentation\/bigint\/bigint\/hash(into:)","abstract":[{"type":"text","text":"Append this "},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":" to the specified hasher."}],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"title":"hash(into:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/hashable-implementations"]}],"kind":"article","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"title":"Hashable Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Hashable-Implementations"},"sections":[],"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)"],"title":"Instance Methods","anchor":"Instance-Methods"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/hash(into:)":{"url":"\/documentation\/bigint\/bigint\/hash(into:)","title":"hash(into:)","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"text":" to the specified hasher.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/hash(into:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier","text":"Hasher"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init()-3wjrc.json b/docs/data/documentation/bigint/bigint/init()-3wjrc.json index b2b46b6..5dd3f03 100644 --- a/docs/data/documentation/bigint/bigint/init()-3wjrc.json +++ b/docs/data/documentation/bigint/bigint/init()-3wjrc.json @@ -1 +1 @@ -{"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"text":"()","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init()-3wjrc"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init()"},{"type":"text","text":"."}],"metadata":{"title":"init()","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","roleHeading":"Initializer","externalID":"s:SzsExycfc::SYNTHESIZED::s:6BigIntAAV","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"symbolKind":"init"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/init()-3wjrc":{"kind":"symbol","title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/init()-3wjrc","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","interfaceLanguage":"swift"},"metadata":{"externalID":"s:SzsExycfc::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Initializer","title":"init()","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"extendedModule":"Swift","symbolKind":"init"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}],"languages":["swift"]}]}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init()-3wjrc"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init()","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init()-3wjrc":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-3wjrc","title":"init()","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init()-3wjrc"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init()-416p0.json b/docs/data/documentation/bigint/bigint/init()-416p0.json index adb5899..3e6c115 100644 --- a/docs/data/documentation/bigint/bigint/init()-416p0.json +++ b/docs/data/documentation/bigint/bigint/init()-416p0.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"()","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"externalID":"s:6BigIntAAVABycfc","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","symbolKind":"init","title":"init()"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init()-416p0"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init()-416p0":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","url":"\/documentation\/bigint\/bigint\/init()-416p0","title":"init()","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"()"}]}],"kind":"declarations"}],"metadata":{"externalID":"s:6BigIntAAVABycfc","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"role":"symbol","title":"init()","roleHeading":"Initializer","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"symbolKind":"init"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init()-416p0"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init()-416p0":{"url":"\/documentation\/bigint\/bigint\/init()-416p0","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"()"}],"type":"topic","abstract":[],"title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init()-416p0","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:)-2kj01.json b/docs/data/documentation/bigint/bigint/init(_:)-2kj01.json index f2db2fa..c1b9a6f 100644 --- a/docs/data/documentation/bigint/bigint/init(_:)-2kj01.json +++ b/docs/data/documentation/bigint/bigint/init(_:)-2kj01.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"metadata":{"extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(_:)","externalID":"s:6BigIntAAVyABxcSBRzlufc","modules":[{"name":"BigInt"}],"symbolKind":"init","roleHeading":"Initializer","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-2kj01"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryFloatingPoint","kind":"typeIdentifier","preciseIdentifier":"s:SB"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2kj01":{"kind":"symbol","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","url":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"symbolKind":"init","role":"symbol","title":"init(_:)","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigIntAAVyABxcSBRzlufc"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-2kj01"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2kj01":{"title":"init(_:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2kj01","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:)-2xsul.json b/docs/data/documentation/bigint/bigint/init(_:)-2xsul.json index e419f8d..0d0e003 100644 --- a/docs/data/documentation/bigint/bigint/init(_:)-2xsul.json +++ b/docs/data/documentation/bigint/bigint/init(_:)-2xsul.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-2xsul"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"integer"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Initializer","title":"init(_:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAVyAbA0A4UIntVcfc","symbolKind":"init","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2xsul":{"role":"symbol","abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","kind":"symbol","title":"init(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAVyAbA0A4UIntVcfc","role":"symbol","roleHeading":"Initializer","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"title":"init(_:)","extendedModule":"BigInt"},"abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"integer"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-2xsul"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-2xsul":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-2xsul","kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","title":"init(_:)","type":"topic","abstract":[{"type":"text","text":"Initializes a new signed big integer with the same value as the specified unsigned big integer."}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:)-4jpxh.json b/docs/data/documentation/bigint/bigint/init(_:)-4jpxh.json index 554ea51..c085393 100644 --- a/docs/data/documentation/bigint/bigint/init(_:)-4jpxh.json +++ b/docs/data/documentation/bigint/bigint/init(_:)-4jpxh.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,"},{"text":" ","type":"text"},{"text":"where the first byte indicates sign (0 for positive, 1 for negative)","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"buffer","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-4jpxh"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh","interfaceLanguage":"swift"},"metadata":{"role":"symbol","externalID":"s:6BigIntAAVyABSWcfc","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"title":"init(_:)","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"UnsafeRawBufferPointer","preciseIdentifier":"s:SW"},{"text":")","kind":"text"}],"roleHeading":"Initializer"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-4jpxh":{"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,"},{"type":"text","text":" "},{"type":"text","text":"where the first byte indicates sign (0 for positive, 1 for negative)"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"UnsafeRawBufferPointer","preciseIdentifier":"s:SW"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:)-4jpxh"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"UnsafeRawBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SW"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAVyABSWcfc","symbolKind":"init","extendedModule":"BigInt","roleHeading":"Initializer","role":"symbol","title":"init(_:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh"},"sections":[],"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,"},{"type":"text","text":" "},{"type":"text","text":"where the first byte indicates sign (0 for positive, 1 for negative)"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"buffer","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"UnsafeRawBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SW"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:)-4jpxh":{"url":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-4jpxh","abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"where the first byte indicates sign (0 for positive, 1 for negative)"}],"type":"topic","title":"init(_:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:)-7tvup.json b/docs/data/documentation/bigint/bigint/init(_:)-7tvup.json index e6d5d0e..93bc769 100644 --- a/docs/data/documentation/bigint/bigint/init(_:)-7tvup.json +++ b/docs/data/documentation/bigint/bigint/init(_:)-7tvup.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup"},"abstract":[{"text":"Initializes an integer from the bits stored inside a piece of ","type":"text"},{"code":"Data","type":"codeVoice"},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The data is assumed to be in network (big-endian) byte order with a first"},{"type":"text","text":" "},{"text":"byte to represent the sign (0 for positive, 1 for negative)","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:)-7tvup"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Initializer","title":"init(_:)","symbolKind":"init","extendedModule":"BigInt","externalID":"s:6BigIntAAVyAB10Foundation4DataVcfc"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:)-7tvup":{"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"text":".","type":"text"},{"text":" ","type":"text"},{"text":"The data is assumed to be in network (big-endian) byte order with a first","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"byte to represent the sign (0 for positive, 1 for negative)"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","kind":"symbol","type":"topic","title":"init(_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","interfaceLanguage":"swift"},"metadata":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","title":"init(_:)","symbolKind":"init","externalID":"s:6BigIntAAVyAB10Foundation4DataVcfc","roleHeading":"Initializer"},"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"The data is assumed to be in network (big-endian) byte order with a first"},{"text":" ","type":"text"},{"text":"byte to represent the sign (0 for positive, 1 for negative)","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}]}]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-7tvup"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:)-7tvup":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-7tvup","title":"init(_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"text":".","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The data is assumed to be in network (big-endian) byte order with a first"},{"text":" ","type":"text"},{"text":"byte to represent the sign (0 for positive, 1 for negative)","type":"text"}],"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:)-up9u.json b/docs/data/documentation/bigint/bigint/init(_:)-up9u.json index 069c9e8..2c65fbb 100644 --- a/docs/data/documentation/bigint/bigint/init(_:)-up9u.json +++ b/docs/data/documentation/bigint/bigint/init(_:)-up9u.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"BigInt"}],"title":"init(_:)","roleHeading":"Initializer","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigIntAAVyABxcSzRzlufc","symbolKind":"init","role":"symbol"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:)-up9u"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-up9u":{"kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:)-up9u","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","title":"init(_:)","role":"symbol"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:)-up9u"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:6BigIntAAVyABxcSzRzlufc","extendedModule":"BigInt","roleHeading":"Initializer","title":"init(_:)","symbolKind":"init","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:)-up9u":{"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(_:)-up9u","title":"init(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:)-up9u","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-17mqt.json b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-17mqt.json index 8e66108..f71362e 100644 --- a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-17mqt.json +++ b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-17mqt.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:format:lenient:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt"},"metadata":{"role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"platforms":[{"deprecated":false,"beta":false,"name":"iOS","introducedAt":"15.0","unavailable":false},{"beta":false,"unavailable":false,"name":"macOS","deprecated":false,"introducedAt":"12.0"},{"unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false,"name":"tvOS"},{"deprecated":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS","beta":false}],"extendedModule":"Swift","symbolKind":"init","roleHeading":"Initializer","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleVyxGSbtKcfc::SYNTHESIZED::s:6BigIntAAV","title":"init(_:format:lenient:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">, "},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = true) "},{"kind":"keyword","text":"throws"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-17mqt":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","abstract":[],"url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","kind":"symbol","title":"init(_:format:lenient:)","role":"symbol"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) "},{"text":"throws","kind":"keyword"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0"},{"introducedAt":"15.0","unavailable":false,"deprecated":false,"name":"tvOS","beta":false},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"symbolKind":"init","role":"symbol","externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleVyxGSbtKcfc::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Initializer","extendedModule":"Swift","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"init(_:format:lenient:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-17mqt":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-17mqt","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u.json b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u.json index 75b543f..09a4801 100644 --- a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u.json +++ b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Percent","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":" = true) ","kind":"text"},{"text":"throws","kind":"keyword"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u"},"metadata":{"platforms":[{"beta":false,"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"12.0"},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"unavailable":false,"name":"watchOS","introducedAt":"8.0","deprecated":false,"beta":false}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV7PercentVyx_GSbtKcfc::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Initializer","title":"init(_:format:lenient:)","symbolKind":"init","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","text":"Percent","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-3wz9u":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","title":"init(_:format:lenient:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","role":"symbol","abstract":[],"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Percent","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(_:format:lenient:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"platforms":[{"unavailable":false,"name":"iOS","beta":false,"deprecated":false,"introducedAt":"15.0"},{"unavailable":false,"name":"macOS","deprecated":false,"introducedAt":"12.0","beta":false},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"15.0","deprecated":false},{"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"8.0","unavailable":false}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV7PercentVyx_GSbtKcfc::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Initializer","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"kind":"typeIdentifier","text":"Percent","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"title":"init(_:format:lenient:)","symbolKind":"init"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" = true) ","kind":"text"},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-3wz9u":{"title":"init(_:format:lenient:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-3wz9u","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-76a2j.json b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-76a2j.json index f262c88..0061612 100644 --- a/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-76a2j.json +++ b/docs/data/documentation/bigint/bigint/init(_:format:lenient:)-76a2j.json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","kind":"typeIdentifier","text":"Currency"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) ","kind":"text"},{"text":"throws","kind":"keyword"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","interfaceLanguage":"swift"},"metadata":{"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"deprecated":false,"name":"macOS","beta":false,"unavailable":false,"introducedAt":"12.0"},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"8.0","deprecated":false}],"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","kind":"typeIdentifier","text":"Currency"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV8CurrencyVyx_GSbtKcfc::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Initializer","symbolKind":"init","title":"init(_:format:lenient:)"},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(_:format:lenient:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-76a2j":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"text":"Currency","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","title":"init(_:format:lenient:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","abstract":[],"role":"symbol"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"text":"Currency","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true) "},{"kind":"keyword","text":"throws"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:format:lenient:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV8CurrencyVyx_GSbtKcfc::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Initializer","extendedModule":"Swift","role":"symbol","title":"init(_:format:lenient:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0","name":"iOS"},{"introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false,"name":"macOS"},{"beta":false,"deprecated":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS"},{"name":"watchOS","introducedAt":"8.0","unavailable":false,"beta":false,"deprecated":false}],"symbolKind":"init"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:format:lenient:)-76a2j":{"title":"init(_:format:lenient:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","kind":"typeIdentifier","text":"Currency"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:format:lenient:)-76a2j","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:radix:).json b/docs/data/documentation/bigint/bigint/init(_:radix:).json index 357d712..9495164 100644 --- a/docs/data/documentation/bigint/bigint/init(_:radix:).json +++ b/docs/data/documentation/bigint/bigint/init(_:radix:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"text","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":" = 10) "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Parameter "},{"type":"codeVoice","code":"text"},{"text":": A string optionally starting with “-” or “+” followed by characters corresponding to numerals in the given radix. (0-9, a-z, A-Z)","type":"text"}]}]},{"content":[{"inlineContent":[{"type":"text","text":"Parameter "},{"code":"radix","type":"codeVoice"},{"text":": The base of the number system to use, or 10 if unspecified.","type":"text"}],"type":"paragraph"}]}],"type":"unorderedList"},{"name":"Requires","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"code":"radix > 1 && radix < 36","type":"codeVoice"}]}],"style":"note","type":"aside"}]}],"sections":[],"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"type":"text","text":" "},{"text":"letters from the English alphabet.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:radix:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Initializer","title":"init(_:radix:)","extendedModule":"BigInt","fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:6BigIntAAV_5radixABSgx_SitcSyRzlufc","symbolKind":"init"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:radix:)":{"role":"symbol","abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"text":" ","type":"text"},{"text":"letters from the English alphabet.","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)","url":"\/documentation\/bigint\/bigint\/init(_:radix:)","title":"init(_:radix:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"title":"init(_:radix:)","externalID":"s:6BigIntAAV_5radixABSgx_SitcSyRzlufc","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Initializer","symbolKind":"init","role":"symbol","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"type":"text","text":" "},{"type":"text","text":"letters from the English alphabet."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:radix:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"text","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" = 10) "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"StringProtocol","preciseIdentifier":"s:Sy","kind":"typeIdentifier"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"items":[{"content":[{"type":"paragraph","inlineContent":[{"text":"Parameter ","type":"text"},{"type":"codeVoice","code":"text"},{"text":": A string optionally starting with “-” or “+” followed by characters corresponding to numerals in the given radix. (0-9, a-z, A-Z)","type":"text"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Parameter "},{"type":"codeVoice","code":"radix"},{"type":"text","text":": The base of the number system to use, or 10 if unspecified."}]}]}],"type":"unorderedList"},{"style":"note","name":"Requires","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"code":"radix > 1 && radix < 36","type":"codeVoice"}]}]}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/init(_:radix:)":{"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(_:radix:)","abstract":[{"text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above ","type":"text"},{"type":"codeVoice","code":"9"},{"text":" are represented by","type":"text"},{"text":" ","type":"text"},{"text":"letters from the English alphabet.","type":"text"}],"kind":"symbol","title":"init(_:radix:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:radix:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:strategy:)-1tkgl.json b/docs/data/documentation/bigint/bigint/init(_:strategy:)-1tkgl.json index 7aa6abd..2788cbf 100644 --- a/docs/data/documentation/bigint/bigint/init(_:strategy:)-1tkgl.json +++ b/docs/data/documentation/bigint/bigint/init(_:strategy:)-1tkgl.json @@ -1 +1 @@ -{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:strategy:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"introducedAt":"12.0","unavailable":false,"name":"macOS","beta":false,"deprecated":false},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"15.0","unavailable":false},{"deprecated":false,"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"8.0"}],"role":"symbol","externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKc0C6OutputQyd__RszAA0C8StrategyRd__lufc::SYNTHESIZED::s:6BigIntAAV","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"ParseInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"strategy"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"roleHeading":"Initializer","extendedModule":"Swift","title":"init(_:strategy:)","symbolKind":"init","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa","kind":"typeIdentifier","text":"ParseOutput"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"ParseStrategy","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-1tkgl":{"type":"topic","kind":"symbol","abstract":[],"title":"init(_:strategy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl"},"metadata":{"title":"init(_:strategy:)","platforms":[{"unavailable":false,"deprecated":false,"beta":false,"name":"iOS","introducedAt":"15.0"},{"name":"macOS","introducedAt":"12.0","unavailable":false,"deprecated":false,"beta":false},{"unavailable":false,"introducedAt":"15.0","deprecated":false,"beta":false,"name":"tvOS"},{"unavailable":false,"name":"watchOS","introducedAt":"8.0","beta":false,"deprecated":false}],"fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKc0C6OutputQyd__RszAA0C8StrategyRd__lufc::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","roleHeading":"Initializer","symbolKind":"init","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ParseInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ParseOutput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP","text":"ParseStrategy"}]}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-1tkgl":{"title":"init(_:strategy:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-1tkgl","kind":"symbol","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(_:strategy:)-4pcmu.json b/docs/data/documentation/bigint/bigint/init(_:strategy:)-4pcmu.json index e75c281..11a6b48 100644 --- a/docs/data/documentation/bigint/bigint/init(_:strategy:)-4pcmu.json +++ b/docs/data/documentation/bigint/bigint/init(_:strategy:)-4pcmu.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"strategy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP","text":"ParseStrategy"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa","text":"ParseOutput","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}]}],"kind":"symbol","metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","symbolKind":"init","roleHeading":"Initializer","title":"init(_:strategy:)","platforms":[{"beta":false,"introducedAt":"15.0","unavailable":false,"name":"iOS","deprecated":false},{"beta":false,"introducedAt":"12.0","name":"macOS","unavailable":false,"deprecated":false},{"introducedAt":"15.0","unavailable":false,"deprecated":false,"beta":false,"name":"tvOS"},{"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKcAA0C8StrategyRd__Sz0C6OutputRpd__lufc::SYNTHESIZED::s:6BigIntAAV","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-4pcmu":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"abstract":[],"role":"symbol","title":"init(_:strategy:)","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"kind":"text","text":", "},{"kind":"externalParam","text":"strategy"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP","text":"ParseStrategy"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa","kind":"typeIdentifier","text":"ParseOutput"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","interfaceLanguage":"swift"},"metadata":{"platforms":[{"deprecated":false,"introducedAt":"15.0","beta":false,"unavailable":false,"name":"iOS"},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0","name":"macOS"},{"introducedAt":"15.0","name":"tvOS","deprecated":false,"unavailable":false,"beta":false},{"introducedAt":"8.0","beta":false,"deprecated":false,"unavailable":false,"name":"watchOS"}],"externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKcAA0C8StrategyRd__Sz0C6OutputRpd__lufc::SYNTHESIZED::s:6BigIntAAV","symbolKind":"init","role":"symbol","roleHeading":"Initializer","title":"init(_:strategy:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"ParseInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(_:strategy:)-4pcmu":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(_:strategy:)-4pcmu","type":"topic","url":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"kind":"symbol","title":"init(_:strategy:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(clamping:).json b/docs/data/documentation/bigint/bigint/init(clamping:).json index 62ce4db..ac884ac 100644 --- a/docs/data/documentation/bigint/bigint/init(clamping:).json +++ b/docs/data/documentation/bigint/bigint/init(clamping:).json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(clamping:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(clamping:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}]}],"kind":"declarations"}],"metadata":{"extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"clamping","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"externalID":"s:6BigIntAAV8clampingABx_tcSzRzlufc","symbolKind":"init","title":"init(clamping:)","roleHeading":"Initializer","role":"symbol","modules":[{"name":"BigInt"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(clamping:)":{"title":"init(clamping:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/bigint\/init(clamping:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(clamping:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","sections":[],"metadata":{"roleHeading":"Initializer","extendedModule":"BigInt","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"clamping","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}],"title":"init(clamping:)","symbolKind":"init","role":"symbol","externalID":"s:6BigIntAAV8clampingABx_tcSzRzlufc"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(clamping:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(clamping:)":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(clamping:)","title":"init(clamping:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(clamping:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(exactly:)-4cfue.json b/docs/data/documentation/bigint/bigint/init(exactly:)-4cfue.json index 1ddfe19..fc29b73 100644 --- a/docs/data/documentation/bigint/bigint/init(exactly:)-4cfue.json +++ b/docs/data/documentation/bigint/bigint/init(exactly:)-4cfue.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":" "},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(exactly:)-4cfue"]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Initializer","role":"symbol","externalID":"s:6BigIntAAV7exactlyABSgx_tcSzRzlufc","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"title":"init(exactly:)","symbolKind":"init"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Numeric.init(exactly:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Numeric-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/numeric-implementations","abstract":[],"role":"collectionGroup","title":"Numeric Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-4cfue":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue","title":"init(exactly:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Initializer","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"title":"init(exactly:)","symbolKind":"init","role":"symbol","externalID":"s:6BigIntAAV7exactlyABSgx_tcSzRzlufc"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(exactly:)-4cfue"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Numeric.init(exactly:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"?<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":" "},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-4cfue":{"kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(exactly:)","abstract":[],"role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue","url":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue"},"doc://BigInt/documentation/BigInt/BigInt/Numeric-Implementations":{"role":"collectionGroup","title":"Numeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","abstract":[],"url":"\/documentation\/bigint\/bigint\/numeric-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(exactly:)-88g91.json b/docs/data/documentation/bigint/bigint/init(exactly:)-88g91.json index 3d4025e..79adc9c 100644 --- a/docs/data/documentation/bigint/bigint/init(exactly:)-88g91.json +++ b/docs/data/documentation/bigint/bigint/init(exactly:)-88g91.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(exactly:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(exactly:)-88g91"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(exactly:)","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","symbolKind":"init","externalID":"s:6BigIntAAV7exactlyABSgx_tcSBRzlufc","extendedModule":"BigInt"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-88g91":{"abstract":[],"type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(exactly:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","url":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","role":"symbol"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"?<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":" "},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"text":"BinaryFloatingPoint","kind":"typeIdentifier","preciseIdentifier":"s:SB"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"extendedModule":"BigInt","title":"init(exactly:)","role":"symbol","roleHeading":"Initializer","externalID":"s:6BigIntAAV7exactlyABSgx_tcSBRzlufc","symbolKind":"init","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(exactly:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(exactly:)-88g91"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-88g91":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-88g91","kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","title":"init(exactly:)","url":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre.json b/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre.json index a8ffd5a..ab8d14a 100644 --- a/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre.json +++ b/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Initialize a new big integer from an extended grapheme cluster."},{"text":" ","type":"text"},{"type":"text","text":"The cluster must consist of a decimal digit."}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}],"title":"init(extendedGraphemeClusterLiteral:)","extendedModule":"BigInt","symbolKind":"init","externalID":"s:6BigIntAAV30extendedGraphemeClusterLiteralABSS_tcfc"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-4wrre":{"role":"symbol","abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre","type":"topic","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations","role":"collectionGroup","abstract":[],"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","type":"topic"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"text":" ","type":"text"},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"metadata":{"roleHeading":"Initializer","role":"symbol","extendedModule":"BigInt","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV30extendedGraphemeClusterLiteralABSS_tcfc","symbolKind":"init","modules":[{"name":"BigInt"}],"title":"init(extendedGraphemeClusterLiteral:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-4wrre":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-4wrre","kind":"symbol","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"text":" ","type":"text"},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe.json b/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe.json index 946b8a9..57833db 100644 --- a/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe.json +++ b/docs/data/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe.json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa"},{"text":")","kind":"text"}],"title":"init(extendedGraphemeClusterLiteral:)","roleHeading":"Initializer","symbolKind":"init","extendedModule":"Swift","externalID":"s:s26ExpressibleByStringLiteralPs0cD4TypeQz023ExtendedGraphemeClusterdE0RtzrlE08extendedghD0xAF_tcfc::SYNTHESIZED::s:6BigIntAAV","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"ExtendedGraphemeClusterLiteralType","type":"codeVoice"},{"text":" is ","type":"text"},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","text":"StringLiteralType"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"ExpressibleByExtendedGraphemeClusterLiteral.init(extendedGraphemeClusterLiteral:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations","role":"collectionGroup","abstract":[],"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-8a7xe":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe","title":"init(extendedGraphemeClusterLiteral:)","url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","kind":"symbol","type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa"},{"kind":"text","text":")"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"text":" is ","type":"text"},{"code":"Self.StringLiteralType","type":"codeVoice"},{"type":"text","text":"."}]}},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"ExpressibleByExtendedGraphemeClusterLiteral.init(extendedGraphemeClusterLiteral:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa"},{"kind":"text","text":")"}],"extendedModule":"Swift","externalID":"s:s26ExpressibleByStringLiteralPs0cD4TypeQz023ExtendedGraphemeClusterdE0RtzrlE08extendedghD0xAF_tcfc::SYNTHESIZED::s:6BigIntAAV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Initializer","title":"init(extendedGraphemeClusterLiteral:)","role":"symbol","symbolKind":"init","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}]}},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(extendedGraphemeClusterLiteral:)-8a7xe":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(extendedGraphemeClusterLiteral:)-8a7xe","type":"topic","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"StringLiteralType","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(from:).json b/docs/data/documentation/bigint/bigint/init(from:).json index 5dbb54d..85610a2 100644 --- a/docs/data/documentation/bigint/bigint/init(from:).json +++ b/docs/data/documentation/bigint/bigint/init(from:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)"},"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","title":"init(from:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"text":": any ","kind":"text"},{"text":"Decoder","kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"externalID":"s:6BigIntAAV4fromABs7Decoder_p_tKcfc","symbolKind":"init","role":"symbol"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"text":"decoder","kind":"internalParam"},{"text":": any ","kind":"text"},{"text":"Decoder","preciseIdentifier":"s:s7DecoderP","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","text":"Decoder","preciseIdentifier":"s:s7DecoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic","title":"init(from:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(from:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Decodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","url":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)"},"sections":[],"metadata":{"role":"symbol","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Decoder","kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"externalID":"s:6BigIntAAV4fromABs7Decoder_p_tKcfc","symbolKind":"init","title":"init(from:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"decoder"},{"kind":"text","text":": any "},{"text":"Decoder","kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Decodable.init(from:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/init(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(from:)","title":"init(from:)","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"text":": any ","kind":"text"},{"preciseIdentifier":"s:s7DecoderP","text":"Decoder","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"kind":"symbol","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/init(from:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Decodable-Implementations":{"url":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Decodable-Implementations","role":"collectionGroup","abstract":[],"kind":"article"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(integerliteral:).json b/docs/data/documentation/bigint/bigint/init(integerliteral:).json index 31dcb80..8653fec 100644 --- a/docs/data/documentation/bigint/bigint/init(integerliteral:).json +++ b/docs/data/documentation/bigint/bigint/init(integerliteral:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"integerLiteral"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5Int64V","text":"Int64","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"metadata":{"externalID":"s:6BigIntAAV14integerLiteralABs5Int64V_tcfc","role":"symbol","symbolKind":"init","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","title":"init(integerLiteral:)","extendedModule":"BigInt","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"integerLiteral"},{"kind":"text","text":": "},{"text":"Int64","kind":"typeIdentifier","preciseIdentifier":"s:s5Int64V"},{"text":")","kind":"text"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(integerliteral:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(integerliteral:)","type":"topic","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"integerLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s5Int64V","kind":"typeIdentifier","text":"Int64"},{"text":")","kind":"text"}],"abstract":[{"text":"Initialize a new big integer from an integer literal.","type":"text"}],"title":"init(integerLiteral:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByIntegerLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","kind":"article","title":"ExpressibleByIntegerLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"Int64","preciseIdentifier":"s:s5Int64V","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"symbolKind":"init","title":"init(integerLiteral:)","roleHeading":"Initializer","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int64","preciseIdentifier":"s:s5Int64V","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV14integerLiteralABs5Int64V_tcfc"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(integerliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByIntegerLiteral-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByIntegerLiteral-Implementations","abstract":[],"title":"ExpressibleByIntegerLiteral Implementations","kind":"article","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(integerliteral:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int64","preciseIdentifier":"s:s5Int64V"},{"kind":"text","text":")"}],"type":"topic","abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(integerLiteral:)","kind":"symbol","title":"init(integerLiteral:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(sign:magnitude:).json b/docs/data/documentation/bigint/bigint/init(sign:magnitude:).json index aea2348..50b44b0 100644 --- a/docs/data/documentation/bigint/bigint/init(sign:magnitude:).json +++ b/docs/data/documentation/bigint/bigint/init(sign:magnitude:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(sign:magnitude:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"sign","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO"},{"kind":"text","text":", "},{"text":"magnitude","kind":"externalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"sign","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"role":"symbol","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"symbolKind":"init","title":"init(sign:magnitude:)","externalID":"s:6BigIntAAV4sign9magnitudeA2B4SignO_AA0A4UIntVtcfc"},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Initializes a new big integer with the provided absolute number and sign flag."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/init(sign:magnitude:)":{"role":"symbol","abstract":[{"text":"Initializes a new big integer with the provided absolute number and sign flag.","type":"text"}],"title":"init(sign:magnitude:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sign"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV4SignO","kind":"typeIdentifier","text":"Sign"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","type":"topic","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"sign"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","interfaceLanguage":"swift"},"abstract":[{"text":"Initializes a new big integer with the provided absolute number and sign flag.","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(sign:magnitude:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"metadata":{"title":"init(sign:magnitude:)","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"sign","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sign","preciseIdentifier":"s:6BigIntAAV4SignO"},{"kind":"text","text":", "},{"text":"magnitude","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"roleHeading":"Initializer","role":"symbol","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV4sign9magnitudeA2B4SignO_AA0A4UIntVtcfc"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(sign:magnitude:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","abstract":[{"type":"text","text":"Initializes a new big integer with the provided absolute number and sign flag."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(sign:magnitude:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"sign","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"magnitude","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"title":"init(sign:magnitude:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(stringliteral:).json b/docs/data/documentation/bigint/bigint/init(stringliteral:).json index 1c66d97..d1f8938 100644 --- a/docs/data/documentation/bigint/bigint/init(stringliteral:).json +++ b/docs/data/documentation/bigint/bigint/init(stringliteral:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"stringLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"externalID":"s:6BigIntAAV13stringLiteralABSS_tcfc","extendedModule":"BigInt","role":"symbol","title":"init(stringLiteral:)","symbolKind":"init","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(stringliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"type":"text","text":" "},{"text":"The string must contain only decimal digits.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"stringLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/init(stringLiteral:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/init(stringliteral:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"text":": ","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"abstract":[{"type":"text","text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length."},{"type":"text","text":" "},{"type":"text","text":"The string must contain only decimal digits."}],"type":"topic","kind":"symbol","title":"init(stringLiteral:)"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByStringLiteral-Implementations":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","kind":"article","type":"topic","title":"ExpressibleByStringLiteral Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"stringLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"metadata":{"externalID":"s:6BigIntAAV13stringLiteralABSS_tcfc","role":"symbol","roleHeading":"Initializer","symbolKind":"init","title":"init(stringLiteral:)","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"stringLiteral"},{"text":": ","kind":"text"},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(stringliteral:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length."},{"text":" ","type":"text"},{"type":"text","text":"The string must contain only decimal digits."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByStringLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByStringLiteral-Implementations","type":"topic","title":"ExpressibleByStringLiteral Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations","role":"collectionGroup","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(stringLiteral:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/init(stringliteral:)","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"type":"text","text":" "},{"text":"The string must contain only decimal digits.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(stringLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s17StringLiteralTypea","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"title":"init(stringLiteral:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(truncatingifneeded:).json b/docs/data/documentation/bigint/bigint/init(truncatingifneeded:).json index f8b574a..acb63a9 100644 --- a/docs/data/documentation/bigint/bigint/init(truncatingifneeded:).json +++ b/docs/data/documentation/bigint/bigint/init(truncatingifneeded:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(truncatingifneeded:)"]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"title":"init(truncatingIfNeeded:)","modules":[{"name":"BigInt"}],"symbolKind":"init","extendedModule":"BigInt","roleHeading":"Initializer","externalID":"s:6BigIntAAV18truncatingIfNeededABx_tcSzRzlufc","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(truncatingIfNeeded:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(truncatingIfNeeded:)":{"url":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","type":"topic","role":"symbol","abstract":[],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(truncatingIfNeeded:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"truncatingIfNeeded"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(truncatingifneeded:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"roleHeading":"Initializer","symbolKind":"init","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","externalID":"s:6BigIntAAV18truncatingIfNeededABx_tcSzRzlufc","title":"init(truncatingIfNeeded:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/init(truncatingIfNeeded:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(truncatingIfNeeded:)","type":"topic","title":"init(truncatingIfNeeded:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"truncatingIfNeeded","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(unicodescalarliteral:).json b/docs/data/documentation/bigint/bigint/init(unicodescalarliteral:).json index a6c2002..79d0e48 100644 --- a/docs/data/documentation/bigint/bigint/init(unicodescalarliteral:).json +++ b/docs/data/documentation/bigint/bigint/init(unicodescalarliteral:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations"]]},"abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"text":" ","type":"text"},{"text":"The scalar must represent a decimal digit.","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"title":"init(unicodeScalarLiteral:)","externalID":"s:6BigIntAAV20unicodeScalarLiteralABs7UnicodeO0D0V_tcfc","role":"symbol","roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara","kind":"typeIdentifier"},{"kind":"text","text":")"}],"extendedModule":"BigInt","symbolKind":"init","modules":[{"name":"BigInt"}]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations"},"doc://BigInt/documentation/BigInt/BigInt/init(unicodeScalarLiteral:)":{"type":"topic","abstract":[{"type":"text","text":"Initialize a new big integer from a Unicode scalar."},{"text":" ","type":"text"},{"text":"The scalar must represent a decimal digit.","type":"text"}],"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(unicodeScalarLiteral:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"The scalar must represent a decimal digit."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"symbol","title":"init(unicodeScalarLiteral:)","symbolKind":"init","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar"},{"text":")","kind":"text"}],"externalID":"s:6BigIntAAV20unicodeScalarLiteralABs7UnicodeO0D0V_tcfc","roleHeading":"Initializer","modules":[{"name":"BigInt"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara","kind":"typeIdentifier"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(unicodeScalarLiteral:)":{"url":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"kind":"text","text":": "},{"text":"UnicodeScalar","kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(unicodeScalarLiteral:)","kind":"symbol","type":"topic","role":"symbol","title":"init(unicodeScalarLiteral:)","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The scalar must represent a decimal digit."}]},"doc://BigInt/documentation/BigInt/BigInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"kind":"article","type":"topic","title":"ExpressibleByUnicodeScalarLiteral Implementations","url":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/ExpressibleByUnicodeScalarLiteral-Implementations","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/init(words:).json b/docs/data/documentation/bigint/bigint/init(words:).json index 0420daa..500908a 100644 --- a/docs/data/documentation/bigint/bigint/init(words:).json +++ b/docs/data/documentation/bigint/bigint/init(words:).json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"words"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":" == "},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)"},"metadata":{"role":"symbol","externalID":"s:6BigIntAAV5wordsABx_tcSTRzSu7ElementRtzlufc","roleHeading":"Initializer","symbolKind":"init","title":"init(words:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/init(words:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/init(words:)":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","title":"init(words:)","url":"\/documentation\/bigint\/bigint\/init(words:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"metadata":{"title":"init(words:)","roleHeading":"Initializer","symbolKind":"init","extendedModule":"BigInt","role":"symbol","externalID":"s:6BigIntAAV5wordsABx_tcSTRzSu7ElementRtzlufc","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"words"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/init(words:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Su","text":"UInt"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/init(words:)":{"url":"\/documentation\/bigint\/bigint\/init(words:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(words:)","title":"init(words:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/inverse(_:).json b/docs/data/documentation/bigint/bigint/inverse(_:).json index 129d98a..a40b803 100644 --- a/docs/data/documentation/bigint/bigint/inverse(_:).json +++ b/docs/data/documentation/bigint/bigint/inverse(_:).json @@ -1 +1 @@ -{"sections":[],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"inverse(_:)","role":"symbol","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV7inverseyABSgABF"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"inverse"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"modulus"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}]},{"content":[{"text":"Return Value","level":2,"type":"heading","anchor":"return-value"},{"type":"paragraph","inlineContent":[{"text":"If ","type":"text"},{"type":"codeVoice","code":"gcd(self, modulus) == 1"},{"type":"text","text":", the value returned is an integer "},{"type":"codeVoice","code":"a < modulus"},{"text":" such that ","type":"text"},{"type":"codeVoice","code":"(a * self) % modulus == 1"},{"type":"text","text":". If "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" aren’t coprime, the return value is "},{"type":"codeVoice","code":"nil"},{"text":".","type":"text"}]}],"kind":"content"},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","name":"Requires","style":"note","content":[{"inlineContent":[{"type":"text","text":"Modulus.Magnitude > 1"}],"type":"paragraph"}]},{"style":"note","name":"Complexity","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(count^3)"}],"type":"paragraph"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/inverse(_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"text":"Returns the ","type":"text"},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true},{"type":"text","text":","},{"text":" ","type":"text"},{"type":"text","text":"or "},{"type":"codeVoice","code":"nil"},{"text":" if there is no such number.","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/inverse(_:)":{"role":"symbol","abstract":[{"type":"text","text":"Returns the "},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true},{"type":"text","text":","},{"type":"text","text":" "},{"text":"or ","type":"text"},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no such number."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","kind":"symbol","title":"inverse(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/inverse(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","title":"multiplicative inverse of this integer in modulo modulus arithmetic","url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","titleInlineContent":[{"type":"text","text":"multiplicative inverse of this integer in modulo "},{"type":"codeVoice","code":"modulus"},{"text":" arithmetic","type":"text"}],"type":"link"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"modulus"},{"text":": ","kind":"text"},{"text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"languages":["swift"]}]},{"kind":"content","content":[{"level":2,"text":"Return Value","anchor":"return-value","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"If ","type":"text"},{"type":"codeVoice","code":"gcd(self, modulus) == 1"},{"type":"text","text":", the value returned is an integer "},{"code":"a < modulus","type":"codeVoice"},{"type":"text","text":" such that "},{"type":"codeVoice","code":"(a * self) % modulus == 1"},{"text":". If ","type":"text"},{"type":"codeVoice","code":"self"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" aren’t coprime, the return value is "},{"code":"nil","type":"codeVoice"},{"text":".","type":"text"}]}]},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Modulus.Magnitude > 1"}]}],"style":"note","name":"Requires","type":"aside"},{"style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"text":"O(count^3)","type":"text"}]}],"type":"aside"}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"text":"Returns the ","type":"text"},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true},{"type":"text","text":","},{"text":" ","type":"text"},{"type":"text","text":"or "},{"type":"codeVoice","code":"nil"},{"type":"text","text":" if there is no such number."}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"title":"inverse(_:)","role":"symbol","externalID":"s:6BigIntAAV7inverseyABSgABF","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":"?"}]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/inverse(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/inverse(_:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/inverse(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/inverse(_:)","abstract":[{"type":"text","text":"Returns the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","type":"reference","isActive":true},{"type":"text","text":","},{"text":" ","type":"text"},{"text":"or ","type":"text"},{"type":"codeVoice","code":"nil"},{"text":" if there is no such number.","type":"text"}],"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":"?","kind":"text"}],"title":"inverse(_:)"},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","type":"link","titleInlineContent":[{"text":"multiplicative inverse of this integer in modulo ","type":"text"},{"type":"codeVoice","code":"modulus"},{"text":" arithmetic","type":"text"}],"title":"multiplicative inverse of this integer in modulo modulus arithmetic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/ismultiple(of:).json b/docs/data/documentation/bigint/bigint/ismultiple(of:).json index 94b2dae..9bcb07f 100644 --- a/docs/data/documentation/bigint/bigint/ismultiple(of:).json +++ b/docs/data/documentation/bigint/bigint/ismultiple(of:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/ismultiple(of:)"]}],"kind":"symbol","metadata":{"symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","title":"isMultiple(of:)","externalID":"s:SzsE10isMultiple2ofSbx_tF::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isMultiple"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.isMultiple(of:)"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/isMultiple(of:)":{"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/ismultiple(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","title":"isMultiple(of:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","title":"isMultiple(of:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"isMultiple","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SzsE10isMultiple2ofSbx_tF::SYNTHESIZED::s:6BigIntAAV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.isMultiple(of:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/ismultiple(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"isMultiple","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/isMultiple(of:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/ismultiple(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isMultiple(of:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isMultiple"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"isMultiple(of:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/isprime(rounds:).json b/docs/data/documentation/bigint/bigint/isprime(rounds:).json index 9e8dbfe..8b51177 100644 --- a/docs/data/documentation/bigint/bigint/isprime(rounds:).json +++ b/docs/data/documentation/bigint/bigint/isprime(rounds:).json @@ -1 +1 @@ -{"metadata":{"externalID":"s:6BigIntAAV7isPrime6roundsSbSi_tF","extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrime"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rounds"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol","title":"isPrime(rounds:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/isprime(rounds:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":" = 10) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}],"kind":"declarations"},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"This function performs a probabilistic ","type":"text"},{"isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","type":"reference"},{"type":"text","text":", consisting of "},{"type":"codeVoice","code":"rounds"},{"type":"text","text":" iterations,"},{"type":"text","text":" "},{"type":"text","text":"each calculating the strong probable prime test for a random base. The number of rounds is 10 by default,"},{"type":"text","text":" "},{"type":"text","text":"but you may specify your own choice."}]},{"inlineContent":[{"text":"To speed things up, the function checks if ","type":"text"},{"type":"codeVoice","code":"self"},{"text":" is divisible by the first few prime numbers before","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"diving into (slower) Miller-Rabin testing."}],"type":"paragraph"},{"inlineContent":[{"text":"Also, when ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" is less than 82 bits wide, "},{"code":"isPrime","type":"codeVoice"},{"text":" does a deterministic test that is guaranteed to","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"return a correct result."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}],"references":{"https://en.wikipedia.org/wiki/Miller–Rabin_primality_test":{"type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","titleInlineContent":[{"text":"Miller-Rabin Primality Test","type":"text"}],"identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","title":"Miller-Rabin Primality Test"},"doc://BigInt/documentation/BigInt/BigInt/isPrime(rounds:)":{"abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}],"url":"\/documentation\/bigint\/bigint\/isprime(rounds:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"rounds","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","title":"isPrime(rounds:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/isprime(rounds:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" = 10) -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}],"kind":"declarations"},{"content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This function performs a probabilistic "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","type":"reference","isActive":true},{"type":"text","text":", consisting of "},{"code":"rounds","type":"codeVoice"},{"text":" iterations,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"each calculating the strong probable prime test for a random base. The number of rounds is 10 by default,"},{"text":" ","type":"text"},{"type":"text","text":"but you may specify your own choice."}]},{"inlineContent":[{"type":"text","text":"To speed things up, the function checks if "},{"type":"codeVoice","code":"self"},{"text":" is divisible by the first few prime numbers before","type":"text"},{"type":"text","text":" "},{"type":"text","text":"diving into (slower) Miller-Rabin testing."}],"type":"paragraph"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Also, when "},{"type":"codeVoice","code":"self"},{"text":" is less than 82 bits wide, ","type":"text"},{"code":"isPrime","type":"codeVoice"},{"text":" does a deterministic test that is guaranteed to","type":"text"},{"type":"text","text":" "},{"text":"return a correct result.","type":"text"}]}],"kind":"content"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV7isPrime6roundsSbSi_tF","extendedModule":"BigInt","title":"isPrime(rounds:)","roleHeading":"Instance Method","modules":[{"name":"BigInt"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/isPrime(rounds:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isPrime(rounds:)","abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}],"url":"\/documentation\/bigint\/bigint\/isprime(rounds:)","title":"isPrime(rounds:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"https://en.wikipedia.org/wiki/Miller–Rabin_primality_test":{"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","title":"Miller-Rabin Primality Test","url":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","titleInlineContent":[{"type":"text","text":"Miller-Rabin Primality Test"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/issigned-5fyf2.json b/docs/data/documentation/bigint/bigint/issigned-5fyf2.json index d0f8a84..04e26bf 100644 --- a/docs/data/documentation/bigint/bigint/issigned-5fyf2.json +++ b/docs/data/documentation/bigint/bigint/issigned-5fyf2.json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Type Property","title":"isSigned","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:6BigIntAAV8isSignedSbvpZ","symbolKind":"property","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.isSigned"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/issigned-5fyf2"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/isSigned-5fyf2":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2","url":"\/documentation\/bigint\/bigint\/issigned-5fyf2","title":"isSigned","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.isSigned","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2"},"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/issigned-5fyf2"]}],"metadata":{"externalID":"s:6BigIntAAV8isSignedSbvpZ","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"symbolKind":"property","roleHeading":"Type Property","title":"isSigned","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/isSigned-5fyf2":{"role":"symbol","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":"isSigned","type":"topic","url":"\/documentation\/bigint\/bigint\/issigned-5fyf2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-5fyf2","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/issigned-86ve9.json b/docs/data/documentation/bigint/bigint/issigned-86ve9.json index 391d6c2..fc3a7a2 100644 --- a/docs/data/documentation/bigint/bigint/issigned-86ve9.json +++ b/docs/data/documentation/bigint/bigint/issigned-86ve9.json @@ -1 +1 @@ -{"metadata":{"extendedModule":"Swift","symbolKind":"property","externalID":"s:SZsE8isSignedSbvpZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","title":"isSigned","roleHeading":"Type Property","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/issigned-86ve9"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"SignedInteger.isSigned"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/isSigned-86ve9":{"url":"\/documentation\/bigint\/bigint\/issigned-86ve9","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","kind":"symbol","title":"isSigned","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/SignedInteger-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","title":"SignedInteger Implementations","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/signedinteger-implementations"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"SignedInteger.isSigned","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SZsE8isSignedSbvpZ::SYNTHESIZED::s:6BigIntAAV","roleHeading":"Type Property","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"property","role":"symbol","title":"isSigned"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/bigint\/issigned-86ve9"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/SignedInteger-Implementations":{"abstract":[],"title":"SignedInteger Implementations","url":"\/documentation\/bigint\/bigint\/signedinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations","kind":"article","type":"topic","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/isSigned-86ve9":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/issigned-86ve9","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","title":"isSigned"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/isstrongprobableprime(_:).json b/docs/data/documentation/bigint/bigint/isstrongprobableprime(_:).json index 220aad6..71082e2 100644 --- a/docs/data/documentation/bigint/bigint/isstrongprobableprime(_:).json +++ b/docs/data/documentation/bigint/bigint/isstrongprobableprime(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"metadata":{"extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:6BigIntAAV21isStrongProbablePrimeySbABF","title":"isStrongProbablePrime(_:)","modules":[{"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","type":"reference"},{"type":"text","text":" for the specified base."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isStrongProbablePrime","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"base"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/isStrongProbablePrime(_:)":{"role":"symbol","abstract":[{"text":"Returns true iff this integer passes the ","type":"text"},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"text":" for the specified base.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","kind":"symbol","title":"isStrongProbablePrime(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isStrongProbablePrime"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"https://en.wikipedia.org/wiki/Probable_prime":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","title":"strong probable prime test","type":"link","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"text":"Returns true iff this integer passes the ","type":"text"},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"text":" for the specified base.","type":"text"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"base","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"externalID":"s:6BigIntAAV21isStrongProbablePrimeySbABF","modules":[{"name":"BigInt"}],"title":"isStrongProbablePrime(_:)","role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"extendedModule":"BigInt"},"references":{"https://en.wikipedia.org/wiki/Probable_prime":{"title":"strong probable prime test","type":"link","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/isStrongProbablePrime(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isStrongProbablePrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"type":"text","text":" for the specified base."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isStrongProbablePrime(_:)","title":"isStrongProbablePrime(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/iszero.json b/docs/data/documentation/bigint/bigint/iszero.json index cce5fd2..19e3de9 100644 --- a/docs/data/documentation/bigint/bigint/iszero.json +++ b/docs/data/documentation/bigint/bigint/iszero.json @@ -1 +1 @@ -{"metadata":{"externalID":"s:6BigIntAAV6isZeroSbvp","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"symbolKind":"property","roleHeading":"Instance Property","modules":[{"name":"BigInt"}],"title":"isZero"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isZero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","level":2,"anchor":"discussion","type":"heading"},{"style":"note","type":"aside","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(1)"}]}]}]}],"kind":"symbol","abstract":[{"type":"text","text":"Return true iff this integer is zero."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/iszero"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/isZero":{"abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","title":"isZero","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/iszero","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"metadata":{"symbolKind":"property","modules":[{"name":"BigInt"}],"title":"isZero","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isZero"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV6isZeroSbvp","role":"symbol"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"style":"note","name":"Complexity","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(1)"}],"type":"paragraph"}]}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/iszero"]}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/isZero":{"url":"\/documentation\/bigint\/bigint\/iszero","abstract":[{"type":"text","text":"Return true iff this integer is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isZero","title":"isZero","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isZero","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/magnitude-swift.property.json b/docs/data/documentation/bigint/bigint/magnitude-swift.property.json index 64c000a..c15524d 100644 --- a/docs/data/documentation/bigint/bigint/magnitude-swift.property.json +++ b/docs/data/documentation/bigint/bigint/magnitude-swift.property.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/magnitude-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}]}]}],"abstract":[{"text":"The absolute value of this integer.","type":"text"}],"sections":[],"kind":"symbol","metadata":{"roleHeading":"Instance Property","modules":[{"name":"BigInt"}],"role":"symbol","externalID":"s:6BigIntAAV9magnitudeAA0A4UIntVvp","title":"magnitude","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"magnitude"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"symbolKind":"property"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt/magnitude-swift.property":{"abstract":[{"text":"The absolute value of this integer.","type":"text"}],"type":"topic","title":"magnitude","kind":"symbol","url":"\/documentation\/bigint\/bigint\/magnitude-swift.property","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"magnitude","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"magnitude","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"title":"magnitude","roleHeading":"Instance Property","externalID":"s:6BigIntAAV9magnitudeAA0A4UIntVvp","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"magnitude","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"modules":[{"name":"BigInt"}],"symbolKind":"property","role":"symbol"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"The absolute value of this integer.","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/magnitude-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/magnitude-swift.property":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/magnitude-swift.property","type":"topic","url":"\/documentation\/bigint\/bigint\/magnitude-swift.property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"magnitude","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"The absolute value of this integer."}],"title":"magnitude"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/magnitude-swift.typealias.json b/docs/data/documentation/bigint/bigint/magnitude-swift.typealias.json index 6be7f81..ed60a11 100644 --- a/docs/data/documentation/bigint/bigint/magnitude-swift.typealias.json +++ b/docs/data/documentation/bigint/bigint/magnitude-swift.typealias.json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Numeric.Magnitude"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Magnitude"},{"text":" = ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"roleHeading":"Type Alias","symbolKind":"typealias","externalID":"s:6BigIntAAV9Magnitudea","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Magnitude"}],"navigatorTitle":[{"text":"Magnitude","kind":"identifier"}],"modules":[{"name":"BigInt"}],"title":"BigInt.Magnitude"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/magnitude-swift.typealias"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Magnitude-swift.typealias":{"role":"symbol","navigatorTitle":[{"text":"Magnitude","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","kind":"symbol","title":"BigInt.Magnitude","type":"topic","url":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Magnitude","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Magnitude"},{"kind":"text","text":" = "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Numeric.Magnitude"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/magnitude-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"title":"BigInt.Magnitude","externalID":"s:6BigIntAAV9Magnitudea","navigatorTitle":[{"kind":"identifier","text":"Magnitude"}],"symbolKind":"typealias","roleHeading":"Type Alias","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Magnitude","kind":"identifier"}],"modules":[{"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Magnitude-swift.typealias":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Magnitude-swift.typealias","navigatorTitle":[{"kind":"identifier","text":"Magnitude"}],"title":"BigInt.Magnitude","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Magnitude","kind":"identifier"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/modulus(_:).json b/docs/data/documentation/bigint/bigint/modulus(_:).json index 146049f..29ac5b8 100644 --- a/docs/data/documentation/bigint/bigint/modulus(_:).json +++ b/docs/data/documentation/bigint/bigint/modulus(_:).json @@ -1 +1 @@ -{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/modulus(_:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"type":"text","text":"Return the result of "},{"code":"a","type":"codeVoice"},{"text":" mod ","type":"text"},{"code":"b","type":"codeVoice"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"role":"symbol","title":"modulus(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modulus"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"symbolKind":"method","externalID":"s:6BigIntAAV7modulusyA2BF","extendedModule":"BigInt","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"modulus","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"mod","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/modulus(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"modulus","kind":"identifier"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"type":"topic","abstract":[{"text":"Return the result of ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" mod "},{"type":"codeVoice","code":"b"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"title":"modulus(_:)","url":"\/documentation\/bigint\/bigint\/modulus(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modulus"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"mod","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/modulus(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"extendedModule":"BigInt","roleHeading":"Instance Method","externalID":"s:6BigIntAAV7modulusyA2BF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"modulus"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"title":"modulus(_:)","role":"symbol","modules":[{"name":"BigInt"}]},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Return the result of "},{"type":"codeVoice","code":"a"},{"text":" mod ","type":"text"},{"code":"b","type":"codeVoice"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/modulus(_:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/modulus(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"modulus","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"role":"symbol","kind":"symbol","title":"modulus(_:)","url":"\/documentation\/bigint\/bigint\/modulus(_:)","abstract":[{"type":"text","text":"Return the result of "},{"code":"a","type":"codeVoice"},{"text":" mod ","type":"text"},{"code":"b","type":"codeVoice"},{"text":". The result is always a nonnegative integer that is less than the absolute value of ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/negate()-8cxml.json b/docs/data/documentation/bigint/bigint/negate()-8cxml.json index b76879d..e36ee30 100644 --- a/docs/data/documentation/bigint/bigint/negate()-8cxml.json +++ b/docs/data/documentation/bigint/bigint/negate()-8cxml.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","interfaceLanguage":"swift"},"sections":[],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:s13SignedNumericPsE6negateyyF::SYNTHESIZED::s:6BigIntAAV","title":"negate()","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"text":"()","kind":"text"}],"symbolKind":"method"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"SignedNumeric.negate()","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/negate()-8cxml"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"mutating","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"negate","kind":"identifier"},{"kind":"text","text":"()"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","type":"topic","abstract":[],"title":"SignedNumeric Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/negate()-8cxml":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","role":"symbol","kind":"symbol","title":"negate()","url":"\/documentation\/bigint\/bigint\/negate()-8cxml","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"kind":"text","text":"()"}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"SignedNumeric.negate()"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml"},"metadata":{"title":"negate()","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"externalID":"s:s13SignedNumericPsE6negateyyF::SYNTHESIZED::s:6BigIntAAV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","role":"symbol"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"negate"},{"kind":"text","text":"()"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/negate()-8cxml"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/negate()-8cxml":{"title":"negate()","type":"topic","url":"\/documentation\/bigint\/bigint\/negate()-8cxml","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"title":"SignedNumeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/negate()-9mlkt.json b/docs/data/documentation/bigint/bigint/negate()-9mlkt.json index ad29c1c..204bd9c 100644 --- a/docs/data/documentation/bigint/bigint/negate()-9mlkt.json +++ b/docs/data/documentation/bigint/bigint/negate()-9mlkt.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/negate()-9mlkt"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"SignedNumeric.negate()","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"text":"()","kind":"text"}],"roleHeading":"Instance Method","title":"negate()","symbolKind":"method","role":"symbol","externalID":"s:6BigIntAAV6negateyyF"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/negate()-9mlkt":{"abstract":[],"title":"negate()","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/negate()-9mlkt","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt"},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","type":"topic","abstract":[],"title":"SignedNumeric Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"SignedNumeric.negate()"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"kind":"text","text":"()"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","externalID":"s:6BigIntAAV6negateyyF","title":"negate()"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"negate"},{"kind":"text","text":"()"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/negate()-9mlkt"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/negate()-9mlkt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"text":"()","kind":"text"}],"title":"negate()","abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/negate()-9mlkt","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/SignedNumeric-Implementations":{"title":"SignedNumeric Implementations","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/bigint\/signednumeric-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/numeric-implementations.json b/docs/data/documentation/bigint/bigint/numeric-implementations.json index 6a83329..28fb06c 100644 --- a/docs/data/documentation/bigint/bigint/numeric-implementations.json +++ b/docs/data/documentation/bigint/bigint/numeric-implementations.json @@ -1 +1 @@ -{"kind":"article","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"topicSections":[{"title":"Initializers","anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue"],"generated":true}],"metadata":{"roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}],"title":"Numeric Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/numeric-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-4cfue":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue","title":"init(exactly:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"API Collection","title":"Numeric Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/numeric-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue"],"anchor":"Initializers","title":"Initializers"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Numeric-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/init(exactly:)-4cfue":{"kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(exactly:)","abstract":[],"role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/init(exactly:)-4cfue","url":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/playgrounddescription.json b/docs/data/documentation/bigint/bigint/playgrounddescription.json index bd0e5c6..d70a112 100644 --- a/docs/data/documentation/bigint/bigint/playgrounddescription.json +++ b/docs/data/documentation/bigint/bigint/playgrounddescription.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/playgrounddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"extendedModule":"BigInt","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"}],"externalID":"s:6BigIntAAV21playgroundDescriptionypvp","role":"symbol","symbolKind":"property","title":"playgroundDescription","roleHeading":"Instance Property","modules":[{"name":"BigInt"}]},"kind":"symbol","abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/playgroundDescription":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","role":"symbol","title":"playgroundDescription","type":"topic","abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"kind":"text","text":": "},{"text":"Any","kind":"keyword"}],"url":"\/documentation\/bigint\/bigint\/playgrounddescription"},"doc://BigInt/documentation/BigInt/BigInt/CustomPlaygroundDisplayConvertible-Implementations":{"abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","title":"CustomPlaygroundDisplayConvertible Implementations","role":"collectionGroup","type":"topic","url":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"playgroundDescription","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"}],"externalID":"s:6BigIntAAV21playgroundDescriptionypvp","extendedModule":"BigInt","title":"playgroundDescription","roleHeading":"Instance Property","modules":[{"name":"BigInt"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/playgrounddescription"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","interfaceLanguage":"swift"},"abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/CustomPlaygroundDisplayConvertible-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/CustomPlaygroundDisplayConvertible-Implementations","type":"topic","url":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations","kind":"article","role":"collectionGroup","abstract":[],"title":"CustomPlaygroundDisplayConvertible Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/playgroundDescription":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/playgroundDescription","type":"topic","abstract":[{"type":"text","text":"Return the playground quick look representation of this integer."}],"url":"\/documentation\/bigint\/bigint\/playgrounddescription","role":"symbol","title":"playgroundDescription"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/power(_:).json b/docs/data/documentation/bigint/bigint/power(_:).json index e4c7c63..fad4d6e 100644 --- a/docs/data/documentation/bigint/bigint/power(_:).json +++ b/docs/data/documentation/bigint/bigint/power(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"exponent"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"languages":["swift"]}],"kind":"declarations"},{"content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 if "},{"type":"codeVoice","code":"exponent == 0"},{"type":"text","text":", otherwise "},{"type":"codeVoice","code":"self"},{"text":" raised to ","type":"text"},{"code":"exponent","type":"codeVoice"},{"type":"text","text":". (This implies that "},{"code":"0.power(0) == 1","type":"codeVoice"},{"text":".)","type":"text"}]}],"kind":"content"},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"inlineContent":[{"type":"text","text":"This function calculates the result by "},{"isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","type":"reference"},{"text":".","type":"text"}],"type":"paragraph"},{"type":"aside","style":"note","name":"Note","content":[{"inlineContent":[{"type":"text","text":"This function can be unreasonably expensive for large exponents, which is why "},{"type":"codeVoice","code":"exponent"},{"text":" is","type":"text"},{"text":" ","type":"text"},{"text":"a simple integer value. If you want to calculate big exponents, you’ll probably need to use","type":"text"},{"type":"text","text":" "},{"type":"text","text":"the modulo arithmetic variant."}],"type":"paragraph"}]},{"style":"note","type":"aside","content":[{"inlineContent":[{"text":"","type":"text"},{"code":"BigUInt.power(_:, modulus:)","type":"codeVoice"}],"type":"paragraph"}],"name":"See Also"},{"name":"Complexity","type":"aside","style":"note","content":[{"inlineContent":[{"type":"text","text":"O((exponent * self.count)^log2(3)) or somesuch. The result may require a large amount of memory, too."}],"type":"paragraph"}]}]}],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"externalID":"s:6BigIntAAV5poweryABSiF","symbolKind":"method","title":"power(_:)","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Instance Method"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/power(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Returns this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/power(_:)":{"role":"symbol","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","kind":"symbol","title":"power(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/power(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}]},"https://en.wikipedia.org/wiki/Exponentiation_by_squaring":{"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","title":"successively squaring the base while halving the exponent","url":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","titleInlineContent":[{"type":"text","text":"successively squaring the base while halving the exponent"}]}}} \ No newline at end of file +{"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"exponent"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"inlineContent":[{"type":"text","text":"1 if "},{"code":"exponent == 0","type":"codeVoice"},{"type":"text","text":", otherwise "},{"code":"self","type":"codeVoice"},{"type":"text","text":" raised to "},{"type":"codeVoice","code":"exponent"},{"text":". (This implies that ","type":"text"},{"type":"codeVoice","code":"0.power(0) == 1"},{"type":"text","text":".)"}],"type":"paragraph"}]},{"content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This function calculates the result by "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","type":"reference","isActive":true},{"type":"text","text":"."}]},{"name":"Note","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"This function can be unreasonably expensive for large exponents, which is why "},{"code":"exponent","type":"codeVoice"},{"text":" is","type":"text"},{"text":" ","type":"text"},{"text":"a simple integer value. If you want to calculate big exponents, you’ll probably need to use","type":"text"},{"type":"text","text":" "},{"text":"the modulo arithmetic variant.","type":"text"}]}]},{"name":"See Also","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"code":"BigUInt.power(_:, modulus:)","type":"codeVoice"}]}]},{"name":"Complexity","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O((exponent * self.count)^log2(3)) or somesuch. The result may require a large amount of memory, too."}]}]}],"kind":"content"}],"abstract":[{"text":"Returns this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"metadata":{"title":"power(_:)","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"extendedModule":"BigInt","symbolKind":"method","externalID":"s:6BigIntAAV5poweryABSiF","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/power(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/power(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"url":"\/documentation\/bigint\/bigint\/power(_:)","abstract":[{"text":"Returns this integer raised to the power ","type":"text"},{"code":"exponent","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:)","type":"topic","role":"symbol","title":"power(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"https://en.wikipedia.org/wiki/Exponentiation_by_squaring":{"type":"link","title":"successively squaring the base while halving the exponent","url":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","titleInlineContent":[{"text":"successively squaring the base while halving the exponent","type":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/power(_:modulus:).json b/docs/data/documentation/bigint/bigint/power(_:modulus:).json index c857a8f..42e35f1 100644 --- a/docs/data/documentation/bigint/bigint/power(_:modulus:).json +++ b/docs/data/documentation/bigint/bigint/power(_:modulus:).json @@ -1 +1 @@ -{"kind":"symbol","metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"roleHeading":"Instance Method","extendedModule":"BigInt","title":"power(_:modulus:)","externalID":"s:6BigIntAAV5power_7modulusA2B_ABtF","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)"},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"exponent"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"inlineContent":[{"text":"Uses the ","type":"text"},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method"},{"type":"text","text":"."}],"type":"paragraph"},{"name":"Complexity","style":"note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(exponent.count * modulus.count^log2(3)) or somesuch"}],"type":"paragraph"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/power(_:modulus:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"code":"exponent","type":"codeVoice"},{"text":" in modulo arithmetic under ","type":"text"},{"code":"modulus","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"https://en.wikipedia.org/wiki/Modular_exponentiation#Right-to-left_binary_method":{"title":"right-to-left binary method","url":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","type":"link","titleInlineContent":[{"text":"right-to-left binary method","type":"text"}],"identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method"},"doc://BigInt/documentation/BigInt/BigInt/power(_:modulus:)":{"abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":" in modulo arithmetic under ","type":"text"},{"code":"modulus","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)","title":"power(_:modulus:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/power(_:modulus:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"exponent"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"modulus"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"paragraph","inlineContent":[{"text":"Uses the ","type":"text"},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method"},{"text":".","type":"text"}]},{"name":"Complexity","content":[{"inlineContent":[{"type":"text","text":"O(exponent.count * modulus.count^log2(3)) or somesuch"}],"type":"paragraph"}],"style":"note","type":"aside"}]}],"abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"code":"exponent","type":"codeVoice"},{"type":"text","text":" in modulo arithmetic under "},{"code":"modulus","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"metadata":{"externalID":"s:6BigIntAAV5power_7modulusA2B_ABtF","roleHeading":"Instance Method","title":"power(_:modulus:)","extendedModule":"BigInt","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"kind":"text","text":"("},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"modulus","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"modules":[{"name":"BigInt"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/power(_:modulus:)"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"https://en.wikipedia.org/wiki/Modular_exponentiation#Right-to-left_binary_method":{"titleInlineContent":[{"type":"text","text":"right-to-left binary method"}],"type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","title":"right-to-left binary method","identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method"},"doc://BigInt/documentation/BigInt/BigInt/power(_:modulus:)":{"url":"\/documentation\/bigint\/bigint\/power(_:modulus:)","title":"power(_:modulus:)","role":"symbol","type":"topic","abstract":[{"type":"text","text":"Returns the remainder of this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"type":"codeVoice","code":"modulus"},{"text":".","type":"text"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/power(_:modulus:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/quotientandremainder(dividingby:).json b/docs/data/documentation/bigint/bigint/quotientandremainder(dividingby:).json index 3518b2c..7b424d5 100644 --- a/docs/data/documentation/bigint/bigint/quotientandremainder(dividingby:).json +++ b/docs/data/documentation/bigint/bigint/quotientandremainder(dividingby:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Divide this integer by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the resulting quotient and remainder."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"quotientAndRemainder","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> (quotient","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", remainder","kind":"text"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Return Value","type":"heading","level":2,"anchor":"return-value"},{"inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"(quotient, remainder)"},{"type":"text","text":" where "},{"code":"quotient = floor(self\/y)","type":"codeVoice"},{"text":", ","type":"text"},{"type":"codeVoice","code":"remainder = self - quotient * y"}],"type":"paragraph"}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"type":"aside","style":"note","name":"Requires","content":[{"inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"y > 0"}],"type":"paragraph"}]},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"O(count^2)","type":"text"}]}],"style":"note","name":"Complexity"}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"BigInt","roleHeading":"Instance Method","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV20quotientAndRemainder10dividingByAB0C0_AB9remaindertAB_tF","symbolKind":"method","title":"quotientAndRemainder(dividingBy:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":") -> (quotient","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"kind":"text","text":", remainder"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/quotientAndRemainder(dividingBy:)":{"role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)","title":"quotientAndRemainder(dividingBy:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"quotientAndRemainder"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":", remainder","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"text":" and return the resulting quotient and remainder.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"externalID":"s:6BigIntAAV20quotientAndRemainder10dividingByAB0C0_AB9remaindertAB_tF","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Instance Method","title":"quotientAndRemainder(dividingBy:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"quotientAndRemainder"},{"text":"(","kind":"text"},{"text":"dividingBy","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (quotient"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", remainder","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"quotientAndRemainder"},{"text":"(","kind":"text"},{"text":"dividingBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"text":", remainder","kind":"text"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"return-value","text":"Return Value"},{"inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"(quotient, remainder)"},{"text":" where ","type":"text"},{"type":"codeVoice","code":"quotient = floor(self\/y)"},{"text":", ","type":"text"},{"code":"remainder = self - quotient * y","type":"codeVoice"}],"type":"paragraph"}]},{"content":[{"text":"Discussion","type":"heading","anchor":"discussion","level":2},{"style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"y > 0"}]}],"name":"Requires"},{"style":"note","type":"aside","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count^2)"}]}]}],"kind":"content"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)"},"abstract":[{"type":"text","text":"Divide this integer by "},{"code":"y","type":"codeVoice"},{"type":"text","text":" and return the resulting quotient and remainder."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/quotientAndRemainder(dividingBy:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", remainder","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Divide this integer by "},{"code":"y","type":"codeVoice"},{"text":" and return the resulting quotient and remainder.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/quotientAndRemainder(dividingBy:)","title":"quotientAndRemainder(dividingBy:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/serialize().json b/docs/data/documentation/bigint/bigint/serialize().json index 7972bd1..6f13bf4 100644 --- a/docs/data/documentation/bigint/bigint/serialize().json +++ b/docs/data/documentation/bigint/bigint/serialize().json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"symbol","sections":[],"abstract":[{"text":"Return a ","type":"text"},{"type":"codeVoice","code":"Data"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/serialize()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"serialize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"}],"modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV9serialize10Foundation4DataVyF","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"BigInt","title":"serialize()","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/serialize()":{"role":"symbol","abstract":[{"text":"Return a ","type":"text"},{"code":"Data","type":"codeVoice"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","url":"\/documentation\/bigint\/bigint\/serialize()","title":"serialize()","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"serialize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","interfaceLanguage":"swift"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/serialize()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"}],"externalID":"s:6BigIntAAV9serialize10Foundation4DataVyF","symbolKind":"method","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"title":"serialize()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"abstract":[{"type":"text","text":"Return a "},{"type":"codeVoice","code":"Data"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/serialize()":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"serialize","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/serialize()","url":"\/documentation\/bigint\/bigint\/serialize()","role":"symbol","title":"serialize()","type":"topic","abstract":[{"type":"text","text":"Return a "},{"code":"Data","type":"codeVoice"},{"text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order and a prepended byte to indicate the sign (0 for positive, 1 for negative)","type":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.enum.json b/docs/data/documentation/bigint/bigint/sign-swift.enum.json index 84644df..45f1415 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.enum.json +++ b/docs/data/documentation/bigint/bigint/sign-swift.enum.json @@ -1 +1 @@ -{"relationshipsSections":[{"title":"Conforms To","kind":"relationships","identifiers":["doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/SH"],"type":"conformsTo"}],"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"],"title":"Enumeration Cases","anchor":"Enumeration-Cases"},{"anchor":"Default-Implementations","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"],"title":"Default Implementations","generated":true}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum"]}],"metadata":{"externalID":"s:6BigIntAAV4SignO","role":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","modules":[{"name":"BigInt"}],"symbolKind":"enum","roleHeading":"Enumeration","navigatorTitle":[{"text":"Sign","kind":"identifier"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Sign"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/plus":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","type":"topic","title":"BigInt.Sign.plus","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"plus"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/SQ":{"identifier":"doc:\/\/BigInt\/SQ","type":"unresolvable","title":"Swift.Equatable"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/SH":{"identifier":"doc:\/\/BigInt\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/Equatable-Implementations":{"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations","role":"collectionGroup","type":"topic","title":"Equatable Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/minus":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","type":"topic","title":"BigInt.Sign.minus","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum"]}],"topicSections":[{"title":"Enumeration Cases","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"],"anchor":"Enumeration-Cases"},{"title":"Default Implementations","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"],"generated":true,"anchor":"Default-Implementations"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Enumeration","externalID":"s:6BigIntAAV4SignO","symbolKind":"enum","navigatorTitle":[{"text":"Sign","kind":"identifier"}],"fragments":[{"text":"enum","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","role":"symbol","modules":[{"name":"BigInt"}]},"relationshipsSections":[{"identifiers":["doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/SH","doc:\/\/BigInt\/s8SendableP"],"title":"Conforms To","type":"conformsTo","kind":"relationships"}],"references":{"doc://BigInt/SQ":{"identifier":"doc:\/\/BigInt\/SQ","type":"unresolvable","title":"Swift.Equatable"},"doc://BigInt/SH":{"identifier":"doc:\/\/BigInt\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/plus":{"title":"BigInt.Sign.plus","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"plus"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","type":"topic","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations","type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","role":"collectionGroup","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/minus":{"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","title":"BigInt.Sign.minus","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/s8SendableP":{"title":"Swift.Sendable","identifier":"doc:\/\/BigInt\/s8SendableP","type":"unresolvable"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.enum/!=(_:_:).json b/docs/data/documentation/bigint/bigint/sign-swift.enum/!=(_:_:).json index 0586bd1..b3dc492 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.enum/!=(_:_:).json +++ b/docs/data/documentation/bigint/bigint/sign-swift.enum/!=(_:_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"Swift","symbolKind":"op","title":"!=(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV4SignO","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/!=(_:_:)":{"kind":"symbol","role":"symbol","title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/Equatable-Implementations":{"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations","role":"collectionGroup","type":"topic","title":"Equatable Implementations","kind":"article"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.!=(_:_:)"},{"type":"text","text":"."}],"metadata":{"extendedModule":"Swift","title":"!=(_:_:)","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigIntAAV4SignO","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/!=(_:_:)":{"title":"!=(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/Equatable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations","type":"topic","title":"Equatable Implementations","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","role":"collectionGroup","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.enum/equatable-implementations.json b/docs/data/documentation/bigint/bigint/sign-swift.enum/equatable-implementations.json index 1949b2e..73cea21 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.enum/equatable-implementations.json +++ b/docs/data/documentation/bigint/bigint/sign-swift.enum/equatable-implementations.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"title":"Equatable Implementations","roleHeading":"API Collection","role":"collectionGroup"},"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations"]}],"topicSections":[{"generated":true,"title":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)"],"anchor":"Operators"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/!=(_:_:)":{"kind":"symbol","role":"symbol","title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"}}} \ No newline at end of file +{"metadata":{"title":"Equatable Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)"],"generated":true,"anchor":"Operators","title":"Operators"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/Equatable-Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/!=(_:_:)":{"title":"!=(_:_:)","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/!=(_:_:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.enum/minus.json b/docs/data/documentation/bigint/bigint/sign-swift.enum/minus.json index d512504..97fcf22 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.enum/minus.json +++ b/docs/data/documentation/bigint/bigint/sign-swift.enum/minus.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","title":"BigInt.Sign.minus","modules":[{"name":"BigInt"}],"roleHeading":"Case","symbolKind":"case","externalID":"s:6BigIntAAV4SignO5minusyA2DmF","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/minus"]}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"minus"}],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/minus":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","type":"topic","title":"BigInt.Sign.minus","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"symbolKind":"case","fragments":[{"text":"case","kind":"keyword"},{"kind":"text","text":" "},{"text":"minus","kind":"identifier"}],"externalID":"s:6BigIntAAV4SignO5minusyA2DmF","title":"BigInt.Sign.minus","roleHeading":"Case","modules":[{"name":"BigInt"}],"role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/minus"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/minus":{"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","title":"BigInt.Sign.minus","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"minus","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/minus"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.enum/plus.json b/docs/data/documentation/bigint/bigint/sign-swift.enum/plus.json index 862c248..c8db8f5 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.enum/plus.json +++ b/docs/data/documentation/bigint/bigint/sign-swift.enum/plus.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"case"},{"kind":"text","text":" "},{"kind":"identifier","text":"plus"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/plus"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"BigInt.Sign.plus","roleHeading":"Case","modules":[{"name":"BigInt"}],"symbolKind":"case","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"text":"plus","kind":"identifier"}],"role":"symbol","externalID":"s:6BigIntAAV4SignO4plusyA2DmF"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/plus":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","type":"topic","title":"BigInt.Sign.plus","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"plus"}],"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.enum\/plus"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"symbolKind":"case","externalID":"s:6BigIntAAV4SignO4plusyA2DmF","role":"symbol","roleHeading":"Case","title":"BigInt.Sign.plus","fragments":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"text":"plus","kind":"identifier"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"case","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"plus"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum/plus":{"title":"BigInt.Sign.plus","fragments":[{"kind":"keyword","text":"case"},{"text":" ","kind":"text"},{"kind":"identifier","text":"plus"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","type":"topic","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum\/plus"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/sign-swift.property.json b/docs/data/documentation/bigint/bigint/sign-swift.property.json index 6850429..69d62c3 100644 --- a/docs/data/documentation/bigint/bigint/sign-swift.property.json +++ b/docs/data/documentation/bigint/bigint/sign-swift.property.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"True iff the value of this integer is negative."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.property"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sign","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"property","roleHeading":"Instance Property","externalID":"s:6BigIntAAV4signAB4SignOvp","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sign"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Sign","preciseIdentifier":"s:6BigIntAAV4SignO","kind":"typeIdentifier"}],"title":"sign"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"type":"topic","kind":"symbol","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Sign"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","abstract":[],"fragments":[{"kind":"keyword","text":"enum"},{"kind":"text","text":" "},{"text":"Sign","kind":"identifier"}],"title":"BigInt.Sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/sign-swift.property":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sign"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"}],"title":"sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","url":"\/documentation\/bigint\/bigint\/sign-swift.property","type":"topic","kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"True iff the value of this integer is negative."}]}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sign"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sign","preciseIdentifier":"s:6BigIntAAV4SignO","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"roleHeading":"Instance Property","externalID":"s:6BigIntAAV4signAB4SignOvp","role":"symbol","modules":[{"name":"BigInt"}],"title":"sign","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"sign"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"text":"Sign","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO"}],"symbolKind":"property"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/sign-swift.property"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"True iff the value of this integer is negative."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Sign-swift.enum":{"abstract":[],"role":"symbol","title":"BigInt.Sign","kind":"symbol","fragments":[{"kind":"keyword","text":"enum"},{"text":" ","kind":"text"},{"text":"Sign","kind":"identifier"}],"navigatorTitle":[{"text":"Sign","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/sign-swift.enum","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Sign-swift.enum","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/sign-swift.property":{"title":"sign","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/sign-swift.property","abstract":[{"text":"True iff the value of this integer is negative.","type":"text"}],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sign"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV4SignO","text":"Sign"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/sign-swift.property","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/signedinteger-implementations.json b/docs/data/documentation/bigint/bigint/signedinteger-implementations.json index 9731fb2..714d3ac 100644 --- a/docs/data/documentation/bigint/bigint/signedinteger-implementations.json +++ b/docs/data/documentation/bigint/bigint/signedinteger-implementations.json @@ -1 +1 @@ -{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/signedinteger-implementations"]}],"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations"},"topicSections":[{"title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9"],"anchor":"Type-Properties","generated":true}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"role":"collectionGroup","title":"SignedInteger Implementations"},"references":{"doc://BigInt/documentation/BigInt/BigInt/isSigned-86ve9":{"url":"\/documentation\/bigint\/bigint\/issigned-86ve9","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","kind":"symbol","title":"isSigned","abstract":[],"type":"topic","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/signedinteger-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedInteger-Implementations"},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"SignedInteger Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9"],"anchor":"Type-Properties","title":"Type Properties","generated":true}],"references":{"doc://BigInt/documentation/BigInt/BigInt/isSigned-86ve9":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/issigned-86ve9","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/isSigned-86ve9","title":"isSigned"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/signednumeric-implementations.json b/docs/data/documentation/bigint/bigint/signednumeric-implementations.json index 715cbd0..ed735ab 100644 --- a/docs/data/documentation/bigint/bigint/signednumeric-implementations.json +++ b/docs/data/documentation/bigint/bigint/signednumeric-implementations.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/signednumeric-implementations"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"title":"Operators","generated":true,"anchor":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)"]},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt"],"anchor":"Instance-Methods","generated":true,"title":"Instance Methods"}],"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","interfaceLanguage":"swift"},"metadata":{"role":"collectionGroup","title":"SignedNumeric Implementations","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/negate()-9mlkt":{"abstract":[],"title":"negate()","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/negate()-9mlkt","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt"},"doc://BigInt/documentation/BigInt/BigInt/-(_:)":{"abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/-(_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"title":"-(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/negate()-8cxml":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","role":"symbol","kind":"symbol","title":"negate()","url":"\/documentation\/bigint\/bigint\/negate()-8cxml","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"kind":"text","text":"()"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/SignedNumeric-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"article","metadata":{"roleHeading":"API Collection","role":"collectionGroup","title":"SignedNumeric Implementations","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)"],"title":"Operators","generated":true,"anchor":"Operators"},{"anchor":"Instance-Methods","generated":true,"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/signednumeric-implementations"]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/negate()-9mlkt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-9mlkt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"negate"},{"text":"()","kind":"text"}],"title":"negate()","abstract":[],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/negate()-9mlkt","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/negate()-8cxml":{"title":"negate()","type":"topic","url":"\/documentation\/bigint\/bigint\/negate()-8cxml","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/negate()-8cxml","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"negate","kind":"identifier"},{"text":"()","kind":"text"}],"abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/-(_:)":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"-","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/-(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/-(_:)","title":"-(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/signum().json b/docs/data/documentation/bigint/bigint/signum().json index b33da82..bec9a11 100644 --- a/docs/data/documentation/bigint/bigint/signum().json +++ b/docs/data/documentation/bigint/bigint/signum().json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/signum()"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"modules":[{"name":"BigInt"}],"title":"signum()","role":"symbol","roleHeading":"Instance Method","externalID":"s:6BigIntAAV6signumAByF","symbolKind":"method"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"signum","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"]}]},{"content":[{"text":"Return Value","anchor":"return-value","type":"heading","level":2},{"inlineContent":[{"type":"text","text":"The sign of this number, expressed as an integer of the same type."}],"type":"paragraph"}],"kind":"content"}],"abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"-1"},{"type":"text","text":" if this value is negative and "},{"type":"codeVoice","code":"1"},{"type":"text","text":" if it’s positive; otherwise, "},{"type":"codeVoice","code":"0"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/signum()":{"url":"\/documentation\/bigint\/bigint\/signum()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"signum()","abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"-1"},{"type":"text","text":" if this value is negative and "},{"type":"codeVoice","code":"1"},{"type":"text","text":" if it’s positive; otherwise, "},{"type":"codeVoice","code":"0"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","roleHeading":"Instance Method","title":"signum()","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"signum","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV6signumAByF"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"kind":"text","text":"() -> "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"}]}]},{"content":[{"type":"heading","anchor":"return-value","text":"Return Value","level":2},{"inlineContent":[{"type":"text","text":"The sign of this number, expressed as an integer of the same type."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Returns "},{"code":"-1","type":"codeVoice"},{"type":"text","text":" if this value is negative and "},{"code":"1","type":"codeVoice"},{"type":"text","text":" if it’s positive; otherwise, "},{"type":"codeVoice","code":"0"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/signum()"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/signum()":{"title":"signum()","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"signum","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"abstract":[{"text":"Returns ","type":"text"},{"code":"-1","type":"codeVoice"},{"text":" if this value is negative and ","type":"text"},{"type":"codeVoice","code":"1"},{"type":"text","text":" if it’s positive; otherwise, "},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/signum()","url":"\/documentation\/bigint\/bigint\/signum()","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/squareroot().json b/docs/data/documentation/bigint/bigint/squareroot().json index cd2db49..02e88ab 100644 --- a/docs/data/documentation/bigint/bigint/squareroot().json +++ b/docs/data/documentation/bigint/bigint/squareroot().json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than "},{"code":"value","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/squareroot()"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}]}]},{"kind":"content","content":[{"anchor":"return-value","text":"Return Value","type":"heading","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"Floor(Sqrt(Self))"}]}]},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"name":"Requires","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Self >= 0"}]}]}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"metadata":{"symbolKind":"method","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"role":"symbol","title":"squareRoot()","roleHeading":"Instance Method","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV10squareRootAByF"},"references":{"doc://BigInt/documentation/BigInt/BigInt/squareRoot()":{"role":"symbol","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"code":"value","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()","kind":"symbol","title":"squareRoot()","type":"topic","url":"\/documentation\/bigint\/bigint\/squareroot()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"squareRoot"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"type":"heading","level":2,"anchor":"return-value","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Floor(Sqrt(Self))"}]}],"kind":"content"},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"type":"aside","style":"note","name":"Requires","content":[{"type":"paragraph","inlineContent":[{"text":"Self >= 0","type":"text"}]}]}],"kind":"content"}],"metadata":{"symbolKind":"method","title":"squareRoot()","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"squareRoot"},{"text":"() -> ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","externalID":"s:6BigIntAAV10squareRootAByF"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/squareroot()"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than "},{"type":"codeVoice","code":"value"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/squareRoot()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/squareRoot()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"role":"symbol","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"type":"codeVoice","code":"value"},{"type":"text","text":"."}],"type":"topic","kind":"symbol","title":"squareRoot()","url":"\/documentation\/bigint\/bigint\/squareroot()"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/stride.json b/docs/data/documentation/bigint/bigint/stride.json index 53831b8..29a2edd 100644 --- a/docs/data/documentation/bigint/bigint/stride.json +++ b/docs/data/documentation/bigint/bigint/stride.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Strideable.Stride"},{"text":".","type":"text"}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"Stride"},{"text":" = ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"symbolKind":"typealias","title":"BigInt.Stride","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"role":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}],"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV6Stridea","roleHeading":"Type Alias"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/stride"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"kind":"symbol","role":"symbol","type":"topic","abstract":[],"title":"BigInt.Stride","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Stride"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/stride"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Strideable.Stride","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"},{"text":" = ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/stride"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Type Alias","symbolKind":"typealias","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"title":"BigInt.Stride","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"}],"extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV6Stridea"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Stride":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","abstract":[],"url":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","kind":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}]},"doc://BigInt/documentation/BigInt/BigInt/Strideable-Implementations":{"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","url":"\/documentation\/bigint\/bigint\/strideable-implementations","kind":"article","title":"Strideable Implementations","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/strideable-implementations.json b/docs/data/documentation/bigint/bigint/strideable-implementations.json index 919c2e3..5cc5f55 100644 --- a/docs/data/documentation/bigint/bigint/strideable-implementations.json +++ b/docs/data/documentation/bigint/bigint/strideable-implementations.json @@ -1 +1 @@ -{"metadata":{"role":"collectionGroup","roleHeading":"API Collection","title":"Strideable Implementations","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/strideable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations"},"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)"],"title":"Instance Methods","anchor":"Instance-Methods"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride"],"generated":true,"title":"Type Aliases","anchor":"Type-Aliases"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Stride":{"kind":"symbol","role":"symbol","type":"topic","abstract":[],"title":"BigInt.Stride","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Stride"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/stride"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/distance(to:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"other - self"},{"type":"text","text":"."}],"type":"topic","title":"distance(to:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV6Stridea","text":"Stride","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/advanced(by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","title":"advanced(by:)","abstract":[{"type":"text","text":"Returns "},{"code":"self + n","type":"codeVoice"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/bigint\/advanced(by:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Stride","preciseIdentifier":"s:6BigIntAAV6Stridea"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"kind":"symbol","role":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/strideable-implementations"]}],"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)"],"title":"Instance Methods","anchor":"Instance-Methods"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride"],"anchor":"Type-Aliases","title":"Type Aliases","generated":true}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Strideable-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"Strideable Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"kind":"article","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/distance(to:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"distance"},{"kind":"text","text":"("},{"kind":"externalParam","text":"to"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"text":"Stride","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV6Stridea"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/distance(to:)","url":"\/documentation\/bigint\/bigint\/distance(to:)","role":"symbol","title":"distance(to:)","type":"topic","abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"other - self"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Stride":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Stride","abstract":[],"url":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","kind":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","role":"symbol","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}]},"doc://BigInt/documentation/BigInt/BigInt/advanced(by:)":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV6Stridea","kind":"typeIdentifier","text":"Stride"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/advanced(by:)","url":"\/documentation\/bigint\/bigint\/advanced(by:)","role":"symbol","title":"advanced(by:)","type":"topic","abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"self + n"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/trailingzerobitcount.json b/docs/data/documentation/bigint/bigint/trailingzerobitcount.json index 7b810f0..a1e061d 100644 --- a/docs/data/documentation/bigint/bigint/trailingzerobitcount.json +++ b/docs/data/documentation/bigint/bigint/trailingzerobitcount.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"externalID":"s:6BigIntAAV20trailingZeroBitCountSivp","symbolKind":"property","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Property","title":"trailingZeroBitCount","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trailingZeroBitCount"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"trailingZeroBitCount","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/trailingzerobitcount"]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.trailingZeroBitCount"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/trailingZeroBitCount":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/trailingzerobitcount","abstract":[],"title":"trailingZeroBitCount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}]}}} \ No newline at end of file +{"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"trailingZeroBitCount","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"roleHeading":"Instance Property","symbolKind":"property","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","externalID":"s:6BigIntAAV20trailingZeroBitCountSivp","title":"trailingZeroBitCount"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.trailingZeroBitCount","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/trailingzerobitcount"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/trailingZeroBitCount":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"trailingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/trailingZeroBitCount","title":"trailingZeroBitCount","kind":"symbol","url":"\/documentation\/bigint\/bigint\/trailingzerobitcount"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/word.json b/docs/data/documentation/bigint/bigint/word.json index 3913d85..7fb9c3a 100644 --- a/docs/data/documentation/bigint/bigint/word.json +++ b/docs/data/documentation/bigint/bigint/word.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"typealias","roleHeading":"Type Alias","externalID":"s:6BigIntAAV4Worda","title":"BigInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"Word"}]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/word"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Word"},{"text":" = ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"}]}]}],"abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Word":{"navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Word"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic","title":"BigInt.Word"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"metadata":{"externalID":"s:6BigIntAAV4Worda","roleHeading":"Type Alias","title":"BigInt.Word","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"Word"}],"symbolKind":"typealias","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Word"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"},{"text":" = ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/word"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Word":{"url":"\/documentation\/bigint\/bigint\/word","title":"BigInt.Word","role":"symbol","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigInt"},{"text":"’s underlying number system.","type":"text"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Word"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.property.json b/docs/data/documentation/bigint/bigint/words-swift.property.json index 84d0934..f68f0f6 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.property.json +++ b/docs/data/documentation/bigint/bigint/words-swift.property.json @@ -1 +1 @@ -{"metadata":{"roleHeading":"Instance Property","symbolKind":"property","title":"words","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","externalID":"s:6BigIntAAV5wordsAB5WordsVvp","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"text":"Words","preciseIdentifier":"s:6BigIntAAV5WordsV","kind":"typeIdentifier"}]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.property"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"words"},{"kind":"text","text":": "},{"text":"BigInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.words"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/words-swift.property":{"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.property","abstract":[],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"words","kind":"identifier"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV5WordsV","kind":"typeIdentifier","text":"Words"}],"title":"words","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.words","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"words","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"metadata":{"title":"words","externalID":"s:6BigIntAAV5wordsAB5WordsVvp","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"words"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV5WordsV","kind":"typeIdentifier","text":"Words"}],"roleHeading":"Instance Property","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"symbolKind":"property"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.property"]}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property"},"references":{"doc://BigInt/documentation/BigInt/BigInt/words-swift.property":{"title":"words","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"words","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":".","kind":"text"},{"text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.property","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/words-swift.property","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct.json b/docs/data/documentation/bigint/bigint/words-swift.struct.json index 094a27a..3cf825f 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.Words"},{"text":".","type":"text"}],"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex"],"generated":true,"title":"Instance Properties","anchor":"Instance-Properties"},{"generated":true,"title":"Subscripts","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)"],"anchor":"Subscripts"},{"title":"Type Aliases","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias"],"generated":true,"anchor":"Type-Aliases"},{"anchor":"Default-Implementations","title":"Default Implementations","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]}],"relationshipsSections":[{"title":"Conforms To","kind":"relationships","identifiers":["doc:\/\/BigInt\/SK","doc:\/\/BigInt\/Sl","doc:\/\/BigInt\/Sk","doc:\/\/BigInt\/ST"],"type":"conformsTo"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"extendedModule":"BigInt","navigatorTitle":[{"text":"Words","kind":"identifier"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"externalID":"s:6BigIntAAV5WordsV","title":"BigInt.Words","modules":[{"name":"BigInt"}],"symbolKind":"struct","roleHeading":"Structure","role":"symbol"},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex","role":"symbol","title":"startIndex","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"startIndex"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/Sk":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/Sk","title":"Swift.RandomAccessCollection"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/subscript(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Su","text":"UInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","kind":"symbol","title":"subscript(_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/Sl":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/Sl","title":"Swift.Collection"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/SK":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SK","title":"Swift.BidirectionalCollection"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices-swift.property":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","type":"topic","title":"indices","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","type":"topic","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Indices","kind":"identifier"}],"title":"BigInt.Words.Indices","kind":"symbol","abstract":[],"navigatorTitle":[{"text":"Indices","kind":"identifier"}]},"doc://BigInt/ST":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/ST","title":"Swift.Sequence"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"count","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/RandomAccessCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","abstract":[],"kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/endIndex":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","abstract":[],"role":"symbol","title":"endIndex","kind":"symbol","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"endIndex"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct"]}],"relationshipsSections":[{"type":"conformsTo","kind":"relationships","identifiers":["doc:\/\/BigInt\/SK","doc:\/\/BigInt\/Sl","doc:\/\/BigInt\/Sk","doc:\/\/BigInt\/ST"],"title":"Conforms To"}],"metadata":{"navigatorTitle":[{"kind":"identifier","text":"Words"}],"symbolKind":"struct","modules":[{"name":"BigInt"}],"title":"BigInt.Words","extendedModule":"BigInt","roleHeading":"Structure","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"role":"symbol","externalID":"s:6BigIntAAV5WordsV"},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex"],"title":"Instance Properties","generated":true,"anchor":"Instance-Properties"},{"generated":true,"title":"Subscripts","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)"],"anchor":"Subscripts"},{"title":"Type Aliases","generated":true,"anchor":"Type-Aliases","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias"]},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"],"anchor":"Default-Implementations","title":"Default Implementations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.Words"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count":{"kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count","role":"symbol","title":"count","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/RandomAccessCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","title":"RandomAccessCollection Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/subscript(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","abstract":[],"title":"subscript(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"UInt","preciseIdentifier":"s:Su","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/ST":{"identifier":"doc:\/\/BigInt\/ST","title":"Swift.Sequence","type":"unresolvable"},"doc://BigInt/Sk":{"identifier":"doc:\/\/BigInt\/Sk","title":"Swift.RandomAccessCollection","type":"unresolvable"},"doc://BigInt/SK":{"identifier":"doc:\/\/BigInt\/SK","title":"Swift.BidirectionalCollection","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/endIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","abstract":[],"title":"endIndex","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Indices","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","navigatorTitle":[{"text":"Indices","kind":"identifier"}],"role":"symbol","title":"BigInt.Words.Indices","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex","abstract":[],"title":"startIndex","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices-swift.property":{"kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV5WordsV","text":"Words","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","role":"symbol","title":"indices","type":"topic","abstract":[]},"doc://BigInt/Sl":{"title":"Swift.Collection","type":"unresolvable","identifier":"doc:\/\/BigInt\/Sl"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:).json index 93e8036..717862a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"allSatisfy","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:STsE10allSatisfyyS2b7ElementQzKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"allSatisfy(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.allSatisfy(_:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"allSatisfy","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/allSatisfy(_:)":{"abstract":[],"type":"topic","title":"allSatisfy(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allSatisfy","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.allSatisfy(_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)"},"metadata":{"title":"allSatisfy(_:)","extendedModule":"Swift","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:STsE10allSatisfyyS2b7ElementQzKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"allSatisfy","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/allSatisfy(_:)":{"role":"symbol","abstract":[],"title":"allSatisfy(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations.json b/docs/data/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations.json index fcaa5dd..fee9b24 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations.json @@ -1 +1 @@ -{"kind":"article","schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"topicSections":[{"anchor":"Instance-Properties","title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last"],"generated":true},{"title":"Instance Methods","anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)"],"generated":true}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"BigInt"}],"role":"collectionGroup","title":"BidirectionalCollection Implementations","roleHeading":"API Collection"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last":{"kind":"symbol","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","title":"last","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","title":"lastIndex(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-6v6ns":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"firstRange(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":">?","kind":"text"}],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropLast(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","title":"dropLast(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","title":"last(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastIndex"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"title":"lastIndex(of:)","role":"symbol","type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)","title":"difference(from:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:by:)":{"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"difference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(before:)":{"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"before","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"title":"formIndex(before:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reversed()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18ReversedCollectionV","kind":"typeIdentifier","text":"ReversedCollection"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","abstract":[],"type":"topic","title":"reversed()"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(_:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","abstract":[],"title":"suffix(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"metadata":{"title":"BidirectionalCollection Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"},"topicSections":[{"anchor":"Instance-Properties","generated":true,"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last"]},{"anchor":"Instance-Methods","title":"Instance Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reversed()":{"role":"symbol","title":"reversed()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","abstract":[],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-6v6ns":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","title":"firstRange(of:)","kind":"symbol","role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropLast(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"title":"dropLast(_:)","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"title":"last","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","abstract":[],"type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","kind":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"role":"symbol","title":"difference(from:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(where:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","title":"lastIndex(where:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(_:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"title":"suffix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(before:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"title":"formIndex(before:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last(where:)":{"title":"last(where:)","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(of:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"lastIndex(of:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/collection-implementations.json b/docs/data/documentation/bigint/bigint/words-swift.struct/collection-implementations.json index 96bd4d8..12b4a1a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/collection-implementations.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/collection-implementations.json @@ -1 +1 @@ -{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","interfaceLanguage":"swift"},"metadata":{"title":"Collection Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"schemaVersion":{"patch":0,"major":0,"minor":3},"topicSections":[{"anchor":"Instance-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount"],"generated":true,"title":"Instance Properties"},{"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)"],"anchor":"Instance-Methods","generated":true}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"title":"formIndex(_:offsetBy:limitedBy:)","role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(from:)":{"title":"suffix(from:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","abstract":[],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/drop(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)","role":"symbol","type":"topic","title":"drop(while:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(upTo:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)","role":"symbol","title":"prefix(upTo:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"upTo"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/underestimatedCount":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"kind":"symbol","role":"symbol","title":"underestimatedCount","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","title":"firstIndex(of:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","abstract":[],"title":"randomElement()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","abstract":[],"type":"topic","title":"first"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement(using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"kind":"symbol","abstract":[],"type":"topic","title":"randomElement(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","title":"index(of:)","role":"symbol","deprecated":true,"type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/makeIterator()":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"kind":"text","text":"() -> "},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol","role":"symbol","title":"makeIterator()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()","conformance":{"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/removingSubranges(_:)":{"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removingSubranges","kind":"identifier"},{"text":"(","kind":"text"},{"text":"RangeSet","preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","kind":"symbol","title":"removingSubranges(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(of:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"kind":"symbol","role":"symbol","title":"indices(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(while:)":{"type":"topic","role":"symbol","title":"trimmingPrefix(while:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(where:)":{"title":"firstIndex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","abstract":[],"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(through:)":{"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"through"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","role":"symbol","abstract":[],"title":"prefix(through:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:)":{"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","kind":"symbol","title":"formIndex(_:offsetBy:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","abstract":[],"type":"topic","title":"prefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(after:)":{"abstract":[],"title":"formIndex(after:)","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"prefix(while:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-3nxcc":{"type":"topic","title":"map(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/ranges(of:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">]","kind":"text"}],"title":"ranges(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"abstract":[],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-1yo3m":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"abstract":[],"title":"firstRange(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","type":"topic","role":"symbol","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropFirst(_:)":{"abstract":[],"title":"dropFirst(_:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dropFirst"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(where:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","title":"indices(where:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/isEmpty":{"title":"isEmpty","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Prefix"},{"text":">(","kind":"text"},{"text":"Prefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","type":"topic","abstract":[],"title":"trimmingPrefix(_:)"}}} \ No newline at end of file +{"kind":"article","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"title":"Collection Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount"],"title":"Instance Properties","anchor":"Instance-Properties","generated":true},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)"],"anchor":"Instance-Methods","generated":true,"title":"Instance Methods"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/drop(while:)":{"type":"topic","title":"drop(while:)","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"drop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"role":"symbol","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"whereSeparator","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"},{"text":"]","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement(using:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","type":"topic","title":"randomElement(using:)","role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(while:)":{"role":"symbol","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)","title":"prefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(where:)":{"abstract":[],"title":"indices(where:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first":{"title":"first","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-1yo3m":{"abstract":[],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"title":"firstRange(of:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(after:)":{"title":"formIndex(after:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"abstract":[],"title":"formIndex(_:offsetBy:limitedBy:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"text":"limitedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(of:)":{"title":"indices(of:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-3nxcc":{"abstract":[],"title":"map(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(of:)":{"title":"index(of:)","deprecated":true,"type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement()":{"abstract":[],"title":"randomElement()","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropFirst(_:)":{"title":"dropFirst(_:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropFirst"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/removingSubranges(_:)":{"abstract":[],"title":"removingSubranges(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s18DiscontiguousSliceV","text":"DiscontiguousSlice","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:)":{"title":"formIndex(_:offsetBy:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(_:)":{"abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"trimmingPrefix(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Prefix"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Prefix"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(while:)":{"title":"trimmingPrefix(while:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/ranges(of:)":{"abstract":[],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"ranges(of:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">]","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(from:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","abstract":[],"type":"topic","title":"suffix(from:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/makeIterator()":{"title":"makeIterator()","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Iterator","type":"codeVoice"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeIterator"},{"kind":"text","text":"() -> "},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/isEmpty":{"abstract":[],"title":"isEmpty","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(_:)":{"abstract":[],"title":"prefix(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/underestimatedCount":{"title":"underestimatedCount","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"underestimatedCount","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(through:)":{"abstract":[],"title":"prefix(through:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"through"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(upTo:)":{"title":"prefix(upTo:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(where:)":{"abstract":[],"title":"firstIndex(where:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(of:)":{"title":"firstIndex(of:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/compactmap(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/compactmap(_:).json index 23c6793..d113151 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/compactmap(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/compactmap(_:).json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"extendedModule":"Swift","title":"compactMap(_:)","externalID":"s:STsE10compactMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"transform"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"]"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compactMap(_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compactMap(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","role":"symbol","type":"topic","title":"compactMap(_:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compactMap"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compactMap(_:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"externalID":"s:STsE10compactMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"compactMap(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compactMap(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compactMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"type":"topic","abstract":[],"title":"compactMap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/compare(_:_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/compare(_:_:).json index f39b8c6..b55392b 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/compare(_:_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/compare(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.compare(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":" : ","kind":"text"},{"text":"SortComparator","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"text":" == ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ComparisonResult","kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"compare(_:_:)","extendedModule":"Swift","role":"symbol","externalID":"s:ST10FoundationE7compareySo18NSComparisonResultV8ComparedQyd___AFtAA14SortComparatorRd__7ElementQzRsd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","platforms":[{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"iOS"},{"beta":false,"name":"macOS","deprecated":false,"unavailable":false,"introducedAt":"12.0"},{"beta":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS","unavailable":false},{"beta":false,"introducedAt":"8.0","name":"watchOS","deprecated":false,"unavailable":false}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compare(_:_:)":{"abstract":[],"type":"topic","title":"compare(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier","text":"Compared"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@E@NSComparisonResult","kind":"typeIdentifier","text":"ComparisonResult"}],"role":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"SortComparator","preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"externalID":"s:ST10FoundationE7compareySo18NSComparisonResultV8ComparedQyd___AFtAA14SortComparatorRd__7ElementQzRsd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"compare(_:_:)","extendedModule":"Swift","platforms":[{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"iOS","beta":false},{"introducedAt":"12.0","name":"macOS","deprecated":false,"unavailable":false,"beta":false},{"beta":false,"name":"tvOS","deprecated":false,"unavailable":false,"introducedAt":"15.0"},{"beta":false,"deprecated":false,"introducedAt":"8.0","name":"watchOS","unavailable":false}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"compare"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compare(_:_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compare(_:_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"}],"role":"symbol","type":"topic","kind":"symbol","title":"compare(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/contains(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/contains(_:).json index d788c61..adebffc 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/contains(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/contains(_:).json @@ -1 +1 @@ -{"metadata":{"externalID":"s:STsSQ7ElementRpzrlE8containsySbABF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","symbolKind":"method","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","title":"contains(_:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.contains(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(_:)":{"abstract":[],"type":"topic","title":"contains(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.contains(_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"languages":["swift"]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"title":"contains(_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsSQ7ElementRpzrlE8containsySbABF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"symbolKind":"method","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]}},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(_:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","abstract":[],"title":"contains(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/contains(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/contains(where:).json index 44c7c91..aa2af85 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/contains(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/contains(where:).json @@ -1 +1 @@ -{"metadata":{"role":"symbol","externalID":"s:STsE8contains5whereS2b7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"contains(where:)","symbolKind":"method","extendedModule":"Swift","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.contains(where:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(where:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","role":"symbol","title":"contains(where:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}],"kind":"declarations"}],"sections":[],"metadata":{"title":"contains(where:)","roleHeading":"Instance Method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","externalID":"s:STsE8contains5whereS2b7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.contains(where:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"type":"topic","abstract":[],"title":"contains(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/count(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/count(where:).json index 9f96754..428f745 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/count(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/count(where:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"role":"symbol","symbolKind":"method","extendedModule":"Swift","title":"count(where:)","externalID":"s:STsE5count5whereSiSb7ElementQzqd__YKXE_tqd__YKs5ErrorRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.count(where:)"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count(where:)":{"abstract":[],"type":"topic","title":"count(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">("},{"kind":"externalParam","text":"where"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.count(where:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"title":"count(where:)","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"role":"symbol","symbolKind":"method","externalID":"s:STsE5count5whereSiSb7ElementQzqd__YKXE_tqd__YKs5ErrorRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"type":"topic","abstract":[],"title":"count(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/count.json b/docs/data/documentation/bigint/bigint/words-swift.struct/count.json index fc91844..b8991e4 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/count.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/count.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.count"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"roleHeading":"Instance Property","modules":[{"name":"BigInt"}],"role":"symbol","symbolKind":"property","externalID":"s:6BigIntAAV5WordsV5countSivp","title":"count","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/count"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"count","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"externalID":"s:6BigIntAAV5WordsV5countSivp","role":"symbol","roleHeading":"Instance Property","title":"count","symbolKind":"property"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.count"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/count"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count":{"kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count","role":"symbol","title":"count","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:).json index 1e59008..134225e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"extendedModule":"Swift","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"platforms":[{"deprecated":false,"unavailable":false,"beta":false,"name":"iOS","introducedAt":"13.0"},{"name":"macOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"10.15"},{"deprecated":false,"unavailable":false,"name":"tvOS","beta":false,"introducedAt":"13.0"},{"name":"watchOS","introducedAt":"6.0","unavailable":false,"beta":false,"deprecated":false}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"difference(from:)","roleHeading":"Instance Method","externalID":"s:SKsSQ7ElementRpzrlE10difference4froms20CollectionDifferenceVyABGqd___tSKRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method"},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SK","kind":"typeIdentifier","text":"BidirectionalCollection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}]}],"kind":"declarations"}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)","title":"difference(from:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"difference(from:)","role":"symbol","extendedModule":"Swift","externalID":"s:SKsSQ7ElementRpzrlE10difference4froms20CollectionDifferenceVyABGqd___tSKRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"13.0","beta":false},{"introducedAt":"10.15","deprecated":false,"name":"macOS","unavailable":false,"beta":false},{"introducedAt":"13.0","deprecated":false,"name":"tvOS","beta":false,"unavailable":false},{"unavailable":false,"beta":false,"name":"watchOS","deprecated":false,"introducedAt":"6.0"}],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"BidirectionalCollection","preciseIdentifier":"s:SK","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:)","kind":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"role":"symbol","title":"difference(from:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:by:).json index 9f667fa..6d31acb 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/difference(from:by:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:by:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier","text":"CollectionDifference"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">","kind":"text"}],"extendedModule":"Swift","role":"symbol","title":"difference(from:by:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"introducedAt":"13.0","name":"iOS","deprecated":false},{"name":"macOS","deprecated":false,"introducedAt":"10.15","unavailable":false,"beta":false},{"beta":false,"introducedAt":"13.0","deprecated":false,"name":"tvOS","unavailable":false},{"deprecated":false,"beta":false,"introducedAt":"6.0","name":"watchOS","unavailable":false}],"symbolKind":"method","externalID":"s:SKsE10difference4from2bys20CollectionDifferenceVy7ElementQzGqd___SbAG_AGtXEtSKRd__AFQyd__AGRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":" "},{"text":"areEquivalent","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SK","text":"BidirectionalCollection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:by:)":{"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"difference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areEquivalent"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"> ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SK","text":"BidirectionalCollection","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"title":"difference(from:by:)","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","role":"symbol","platforms":[{"introducedAt":"13.0","deprecated":false,"beta":false,"unavailable":false,"name":"iOS"},{"introducedAt":"10.15","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"deprecated":false,"introducedAt":"6.0","beta":false,"unavailable":false,"name":"watchOS"}],"externalID":"s:SKsE10difference4from2bys20CollectionDifferenceVy7ElementQzGqd___SbAG_AGtXEtSKRd__AFQyd__AGRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.difference(from:by:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/difference(from:by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/drop(while:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/drop(while:).json index d8601da..bf95638 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/drop(while:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/drop(while:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.drop(while:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"drop"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SlsE4drop5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"drop(while:)","roleHeading":"Instance Method","symbolKind":"method","role":"symbol","extendedModule":"Swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"drop","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/drop(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)","role":"symbol","type":"topic","title":"drop(while:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"drop","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.drop(while:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"symbolKind":"method","externalID":"s:SlsE4drop5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","roleHeading":"Instance Method","title":"drop(while:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"drop","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/drop(while:)":{"type":"topic","title":"drop(while:)","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"drop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/drop(while:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/dropfirst(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/dropfirst(_:).json index 1f6051b..7c5c5ad 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/dropfirst(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/dropfirst(_:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dropFirst","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"k","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" = 1) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dropFirst"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"roleHeading":"Instance Method","externalID":"s:SlsE9dropFirsty11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"dropFirst(_:)","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.dropFirst(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropFirst(_:)":{"abstract":[],"title":"dropFirst(_:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dropFirst"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.dropFirst(_:)"},{"type":"text","text":"."}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropFirst"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"externalID":"s:SlsE9dropFirsty11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"dropFirst(_:)","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropFirst"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"k"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 1) -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropFirst(_:)":{"title":"dropFirst(_:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropFirst"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropFirst(_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/droplast(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/droplast(_:).json index 83f950d..dbdb9a2 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/droplast(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/droplast(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"k"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:SKsE8dropLasty11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"dropLast"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"dropLast(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.dropLast(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropLast(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","title":"dropLast(_:)","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.dropLast(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"k"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"kind":"symbol","sections":[],"metadata":{"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","title":"dropLast(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SKsE8dropLasty11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/dropLast(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"title":"dropLast(_:)","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:).json index 1a86ff8..1674102 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:).json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.elementsEqual(_:)"},{"text":".","type":"text"}],"sections":[],"metadata":{"title":"elementsEqual(_:)","externalID":"s:STsSQ7ElementRpzrlE13elementsEqualySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"extendedModule":"Swift","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]}},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"}],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","kind":"symbol","role":"symbol","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"title":"elementsEqual(_:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"externalID":"s:STsSQ7ElementRpzrlE13elementsEqualySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","title":"elementsEqual(_:)","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.elementsEqual(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol","title":"elementsEqual(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:).json index 67edd8d..1311422 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:).json @@ -1 +1 @@ -{"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"elementsEqual(_:by:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:STsE13elementsEqual_2bySbqd___Sb7ElementQz_ACQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areEquivalent"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"}],"platforms":["macOS"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.elementsEqual(_:by:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","role":"symbol","title":"elementsEqual(_:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"areEquivalent","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.elementsEqual(_:by:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE13elementsEqual_2bySbqd___Sb7ElementQz_ACQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"elementsEqual(_:by:)","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:by:)":{"title":"elementsEqual(_:by:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/endindex.json b/docs/data/documentation/bigint/bigint/words-swift.struct/endindex.json index 114e087..5e03da1 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/endindex.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/endindex.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.endIndex","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/endindex"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"endIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex"},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"metadata":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"externalID":"s:6BigIntAAV5WordsV8endIndexSivp","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Instance Property","symbolKind":"property","title":"endIndex"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/endIndex":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","abstract":[],"role":"symbol","title":"endIndex","kind":"symbol","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"endIndex"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/endindex"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.endIndex"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"role":"symbol","externalID":"s:6BigIntAAV5WordsV8endIndexSivp","roleHeading":"Instance Property","title":"endIndex","modules":[{"name":"BigInt"}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"symbolKind":"property"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"endIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/endIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/endIndex","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","abstract":[],"title":"endIndex","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/enumerated().json b/docs/data/documentation/bigint/bigint/words-swift.struct/enumerated().json index 0ba992f..b68d267 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/enumerated().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/enumerated().json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.enumerated()"},{"type":"text","text":"."}],"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE10enumerateds18EnumeratedSequenceVyxGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"EnumeratedSequence","kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"title":"enumerated()","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()"]}],"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"EnumeratedSequence","preciseIdentifier":"s:s18EnumeratedSequenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/enumerated()":{"abstract":[],"type":"topic","title":"enumerated()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enumerated"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"extendedModule":"Swift","title":"enumerated()","externalID":"s:STsE10enumerateds18EnumeratedSequenceVyxGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"enumerated","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"EnumeratedSequence","preciseIdentifier":"s:s18EnumeratedSequenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.enumerated()","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"enumerated"},{"text":"() -> ","kind":"text"},{"text":"EnumeratedSequence","preciseIdentifier":"s:s18EnumeratedSequenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/enumerated()":{"type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","title":"enumerated()","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz.json b/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz.json index dfa8ad0..0591e3e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"metadata":{"title":"filter(_:)","symbolKind":"method","externalID":"s:STsE6filterySay7ElementQzGSbACKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"extendedModule":"Swift","role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.filter(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isIncluded","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-3zvyz":{"abstract":[],"type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.filter(_:)"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"isIncluded","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz"]}],"metadata":{"title":"filter(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","extendedModule":"Swift","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"filter","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"externalID":"s:STsE6filterySay7ElementQzGSbACKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-3zvyz":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","type":"topic","kind":"symbol","title":"filter(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t.json b/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t.json index 2e5f085..16c59f3 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"roleHeading":"Instance Method","extendedModule":"Swift","title":"filter(_:)","platforms":[{"introducedAt":"17.0","beta":false,"name":"iOS","deprecated":false,"unavailable":false},{"introducedAt":"14.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0","deprecated":false},{"unavailable":false,"introducedAt":"10.0","deprecated":false,"beta":false,"name":"watchOS"}],"role":"symbol","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:ST10FoundationE6filterySay7ElementQzGAA9PredicateVyAD_QPGKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.filter(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Predicate","preciseIdentifier":"s:10Foundation9PredicateV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t"]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-4yn8t":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","kind":"symbol","role":"symbol","title":"filter(_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.filter(_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"platforms":[{"unavailable":false,"deprecated":false,"name":"iOS","introducedAt":"17.0","beta":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"14.0"},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"17.0","deprecated":false},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"10.0","unavailable":false}],"title":"filter(_:)","externalID":"s:ST10FoundationE6filterySay7ElementQzGAA9PredicateVyAD_QPGKF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"extendedModule":"Swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","kind":"typeIdentifier","text":"Predicate"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t"]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-4yn8t":{"role":"symbol","abstract":[],"title":"filter(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"Predicate","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/first(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/first(where:).json index c89b26e..7ae47ad 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/first(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/first(where:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"first(where:)","externalID":"s:STsE5first5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}]},"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.first(where:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first(where:)":{"abstract":[],"type":"topic","title":"first(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.first(where:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","title":"first(where:)","externalID":"s:STsE5first5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"first"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first(where:)":{"abstract":[],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","title":"first(where:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/first.json b/docs/data/documentation/bigint/bigint/words-swift.struct/first.json index f07947c..0061ff5 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/first.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/first.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.first"},{"type":"text","text":"."}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/first"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"role":"symbol","symbolKind":"property","roleHeading":"Instance Property","externalID":"s:SlsE5first7ElementQzSgvp::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"first"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","abstract":[],"type":"topic","title":"first"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/first"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"? { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.first","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"title":"first","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Property","externalID":"s:SlsE5first7ElementQzSgvp::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"symbolKind":"property"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first":{"title":"first","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(of:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(of:).json index a266e50..77b9e2e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(of:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(of:).json @@ -1 +1 @@ -{"metadata":{"externalID":"s:SlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"firstIndex(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.firstIndex(of:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","title":"firstIndex(of:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.firstIndex(of:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)"},"kind":"symbol","metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"externalID":"s:SlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"firstIndex(of:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(of:)":{"title":"firstIndex(of:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(of:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(where:).json index 893e5fa..841194a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/firstindex(where:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.firstIndex(where:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","title":"firstIndex(where:)","symbolKind":"method","externalID":"s:SlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(where:)":{"title":"firstIndex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","abstract":[],"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"firstIndex(where:)","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"role":"symbol","externalID":"s:SlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.firstIndex(where:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstIndex(where:)":{"abstract":[],"title":"firstIndex(where:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m.json b/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m.json index 35309f6..5a5b4fa 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">? ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sl","text":"Collection","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"16.0","beta":false},{"beta":false,"deprecated":false,"unavailable":false,"name":"macOS","introducedAt":"13.0"},{"deprecated":false,"introducedAt":"16.0","unavailable":false,"beta":false,"name":"tvOS"},{"unavailable":false,"introducedAt":"9.0","beta":false,"deprecated":false,"name":"watchOS"}],"role":"symbol","extendedModule":"Swift","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":">?","kind":"text"}],"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"firstRange(of:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.firstRange(of:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-1yo3m":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"abstract":[],"title":"firstRange(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","type":"topic","role":"symbol","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">?"}],"extendedModule":"Swift","role":"symbol","roleHeading":"Instance Method","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"firstRange(of:)","symbolKind":"method","platforms":[{"introducedAt":"16.0","unavailable":false,"name":"iOS","beta":false,"deprecated":false},{"name":"macOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"16.0"},{"name":"watchOS","deprecated":false,"introducedAt":"9.0","unavailable":false,"beta":false}]},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":">? ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sl","kind":"typeIdentifier","text":"Collection"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.firstRange(of:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-1yo3m":{"abstract":[],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"title":"firstRange(of:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-1yo3m","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns.json b/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns.json index c867e40..def3fa0 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns.json @@ -1 +1 @@ -{"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">?"}],"externalID":"s:SK17_StringProcessingSL7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"name":"iOS","unavailable":false,"beta":false,"introducedAt":"16.0","deprecated":false},{"name":"macOS","unavailable":false,"deprecated":false,"introducedAt":"13.0","beta":false},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"16.0","name":"tvOS"},{"introducedAt":"9.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"title":"firstRange(of:)","role":"symbol","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]}},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">? ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"Collection","preciseIdentifier":"s:Sl","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.firstRange(of:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-6v6ns":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"firstRange(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":">?","kind":"text"}],"type":"topic","role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":">? ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Collection","preciseIdentifier":"s:Sl","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.firstRange(of:)"},{"type":"text","text":"."}],"metadata":{"platforms":[{"name":"iOS","introducedAt":"16.0","unavailable":false,"deprecated":false,"beta":false},{"beta":false,"name":"macOS","introducedAt":"13.0","deprecated":false,"unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"16.0"},{"deprecated":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"beta":false}],"symbolKind":"method","title":"firstRange(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":">?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","externalID":"s:SK17_StringProcessingSL7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/firstRange(of:)-6v6ns":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/firstRange(of:)-6v6ns","title":"firstRange(of:)","kind":"symbol","role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj.json b/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj.json index 12ba340..99b22cd 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.flatMap(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"kind":"text","text":"<"},{"text":"ElementOfResult","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"deprecationSummary":[{"inlineContent":[{"text":"Please use compactMap(_:) for the case where closure returns an optional value","type":"text"}],"type":"paragraph"}],"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","interfaceLanguage":"swift"},"metadata":{"role":"symbol","externalID":"s:STsE7flatMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"flatMap(_:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"roleHeading":"Instance Method","platforms":[]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-4zycj":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","role":"symbol","title":"flatMap(_:)","deprecated":true,"type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.flatMap(_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"symbolKind":"method","title":"flatMap(_:)","roleHeading":"Instance Method","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"externalID":"s:STsE7flatMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"text":"Please use compactMap(_:) for the case where closure returns an optional value","type":"text"}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"?) "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-4zycj":{"title":"flatMap(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"deprecated":true,"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom.json b/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom.json index 2103d98..3931bf7 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"externalID":"s:STsE7flatMapySay7ElementQyd__Gqd__ABQzKXEKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"flatMap(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"SegmentOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.flatMap(_:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":" : ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-62tom":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","role":"symbol","title":"flatMap(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.flatMap(_:)"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"externalID":"s:STsE7flatMapySay7ElementQyd__Gqd__ABQzKXEKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","symbolKind":"method","title":"flatMap(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"text":"SegmentOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-62tom":{"role":"symbol","abstract":[],"title":"flatMap(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/foreach(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/foreach(_:).json index 260e635..2fddd55 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/foreach(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/foreach(_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.forEach(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"body"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:STsE7forEachyyy7ElementQzKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"}],"title":"forEach(_:)","extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/forEach(_:)":{"type":"topic","title":"forEach(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.forEach(_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"body","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)"]}],"metadata":{"title":"forEach(_:)","extendedModule":"Swift","externalID":"s:STsE7forEachyyy7ElementQzKXEKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"forEach"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"}],"symbolKind":"method","roleHeading":"Instance Method"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/forEach(_:)":{"role":"symbol","abstract":[],"title":"forEach(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/formatted(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/formatted(_:).json index 98fc340..3080830 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/formatted(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/formatted(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"FormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","platforms":[{"introducedAt":"15.0","deprecated":false,"name":"iOS","beta":false,"unavailable":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"12.0"},{"deprecated":false,"name":"tvOS","unavailable":false,"beta":false,"introducedAt":"15.0"},{"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0","deprecated":false}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"}],"title":"formatted(_:)","symbolKind":"method","externalID":"s:ST10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)"},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.formatted(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formatted(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","kind":"symbol","role":"symbol","title":"formatted(_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"FormatStyle","preciseIdentifier":"s:10Foundation11FormatStyleP"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"externalID":"s:ST10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"beta":false,"unavailable":false,"introducedAt":"15.0","name":"iOS","deprecated":false},{"introducedAt":"12.0","beta":false,"deprecated":false,"unavailable":false,"name":"macOS"},{"deprecated":false,"introducedAt":"15.0","name":"tvOS","beta":false,"unavailable":false},{"deprecated":false,"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false}],"title":"formatted(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","extendedModule":"Swift"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.formatted(_:)"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formatted(_:)":{"role":"symbol","abstract":[],"title":"formatted(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:).json index 99a568e..70ee0f2 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:).json @@ -1 +1 @@ -{"metadata":{"title":"formIndex(_:offsetBy:)","externalID":"s:SlsE9formIndex_8offsetByy0B0Qzz_SitF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":")","kind":"text"}],"symbolKind":"method"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"distance","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.formIndex(_:offsetBy:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:)":{"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","kind":"symbol","title":"formIndex(_:offsetBy:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"formIndex(_:offsetBy:)","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"externalID":"s:SlsE9formIndex_8offsetByy0B0Qzz_SitF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"distance"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.formIndex(_:offsetBy:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:)":{"title":"formIndex(_:offsetBy:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:).json index 8d1bdd8..aa49e17 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.formIndex(_:offsetBy:limitedBy:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method","title":"formIndex(_:offsetBy:limitedBy:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"limitedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE9formIndex_8offsetBy07limitedD0Sb0B0Qzz_SiAEtF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"distance"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":" "},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"title":"formIndex(_:offsetBy:limitedBy:)","role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"extendedModule":"Swift","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"formIndex(_:offsetBy:limitedBy:)","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SlsE9formIndex_8offsetBy07limitedD0Sb0B0Qzz_SiAEtF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.formIndex(_:offsetBy:limitedBy:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"distance","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"kind":"text","text":" "},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"abstract":[],"title":"formIndex(_:offsetBy:limitedBy:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"text":"limitedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(after:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(after:).json index 306e041..16ccecf 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(after:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(after:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.formIndex(after:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"extendedModule":"Swift","title":"formIndex(after:)","symbolKind":"method","externalID":"s:SlsE9formIndex5aftery0B0Qzz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"after"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":")"}]}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(after:)":{"abstract":[],"title":"formIndex(after:)","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:SlsE9formIndex5aftery0B0Qzz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","title":"formIndex(after:)","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)"]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.formIndex(after:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(after:)":{"title":"formIndex(after:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(after:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(before:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(before:).json index 925fd60..b148e36 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(before:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/formindex(before:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"before","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"formIndex(before:)","externalID":"s:SKsE9formIndex6beforey0B0Qzz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.formIndex(before:)"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"kind":"text","text":" "},{"kind":"internalParam","text":"i"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(before:)":{"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","kind":"symbol","role":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"before","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"title":"formIndex(before:)"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.formIndex(before:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"before","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":")"}],"externalID":"s:SKsE9formIndex6beforey0B0Qzz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"formIndex(before:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"before","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formIndex(before:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formIndex(before:)","role":"symbol","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"title":"formIndex(before:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:).json index f05b044..46b61e4 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:).json @@ -1 +1 @@ -{"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"index(_:offsetBy:limitedBy:)","roleHeading":"Instance Method","extendedModule":"Swift","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SksE5index_8offsetBy07limitedC05IndexQzSgAE_SiAEtF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method"},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"distance"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"limit"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"RandomAccessCollection.index(_:offsetBy:limitedBy:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/RandomAccessCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","abstract":[],"kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","title":"index(_:offsetBy:limitedBy:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)"]}],"metadata":{"role":"symbol","symbolKind":"method","externalID":"s:SksE5index_8offsetBy07limitedC05IndexQzSgAE_SiAEtF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"roleHeading":"Instance Method","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"index(_:offsetBy:limitedBy:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"distance"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"limit"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"RandomAccessCollection.index(_:offsetBy:limitedBy:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/RandomAccessCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","title":"RandomAccessCollection Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"index(_:offsetBy:limitedBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/index(of:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/index(of:).json index eaeac58..3702b54 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/index(of:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/index(of:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.index(of:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)"]}],"sections":[],"metadata":{"externalID":"s:SlsSQ7ElementRpzrlE5index2of5IndexQzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","platforms":[],"title":"index(of:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","title":"index(of:)","role":"symbol","deprecated":true,"type":"topic","abstract":[]}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.index(of:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"languages":["swift"]}]}],"metadata":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsSQ7ElementRpzrlE5index2of5IndexQzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","symbolKind":"method","platforms":[],"title":"index(of:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(of:)":{"title":"index(of:)","deprecated":true,"type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(of:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/indices(of:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/indices(of:).json index c4b91f0..74fe006 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/indices(of:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/indices(of:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)"]}],"metadata":{"symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"indices(of:)","platforms":[{"unavailable":false,"name":"iOS","beta":false,"introducedAt":"18.0","deprecated":false},{"beta":false,"introducedAt":"15.0","name":"macOS","unavailable":false,"deprecated":false},{"introducedAt":"18.0","deprecated":false,"name":"tvOS","beta":false,"unavailable":false},{"unavailable":false,"introducedAt":"11.0","deprecated":false,"name":"watchOS","beta":false},{"introducedAt":"2.0","name":"visionOS","deprecated":false,"unavailable":false,"beta":false}],"externalID":"s:SlsSQ7ElementRpzrlE7indices2ofs8RangeSetVy5IndexQzGAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"extendedModule":"Swift","role":"symbol"},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.indices(of:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(of:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"kind":"symbol","role":"symbol","title":"indices(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">","kind":"text"}],"externalID":"s:SlsSQ7ElementRpzrlE7indices2ofs8RangeSetVy5IndexQzGAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"name":"iOS","deprecated":false,"introducedAt":"18.0","unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"15.0"},{"introducedAt":"18.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"11.0","unavailable":false},{"unavailable":false,"name":"visionOS","beta":false,"deprecated":false,"introducedAt":"2.0"}],"title":"indices(of:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.indices(of:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(of:)":{"title":"indices(of:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(of:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/indices(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/indices(where:).json index f482d69..21484fa 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/indices(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/indices(where:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.indices(where:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"RangeSet","preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":">","kind":"text"}],"roleHeading":"Instance Method","title":"indices(where:)","extendedModule":"Swift","externalID":"s:SlsE7indices5wheres8RangeSetVy5IndexQzGSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","symbolKind":"method","platforms":[{"introducedAt":"18.0","beta":false,"unavailable":false,"deprecated":false,"name":"iOS"},{"introducedAt":"15.0","beta":false,"deprecated":false,"name":"macOS","unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"introducedAt":"18.0","beta":false},{"introducedAt":"11.0","deprecated":false,"name":"watchOS","beta":false,"unavailable":false},{"unavailable":false,"deprecated":false,"introducedAt":"2.0","beta":false,"name":"visionOS"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(where:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","title":"indices(where:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.indices(where:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"18.0","deprecated":false},{"name":"macOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"15.0"},{"unavailable":false,"deprecated":false,"name":"tvOS","introducedAt":"18.0","beta":false},{"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"11.0","deprecated":false},{"name":"visionOS","deprecated":false,"introducedAt":"2.0","unavailable":false,"beta":false}],"title":"indices(where:)","externalID":"s:SlsE7indices5wheres8RangeSetVy5IndexQzGSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">"}],"extendedModule":"Swift"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)"]}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices(where:)":{"abstract":[],"title":"indices(where:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.property.json b/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.property.json index 053ebd1..bf12090 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.property.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.property.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV","text":"Words","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property"},"metadata":{"role":"symbol","externalID":"s:6BigIntAAV5WordsV7indicesSnySiGvp","symbolKind":"property","modules":[{"name":"BigInt"}],"roleHeading":"Instance Property","title":"indices","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV","text":"Words"},{"kind":"text","text":"."},{"text":"Indices","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa"}]},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"RandomAccessCollection.indices"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","type":"topic","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Indices","kind":"identifier"}],"title":"BigInt.Words.Indices","kind":"symbol","abstract":[],"navigatorTitle":[{"text":"Indices","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices-swift.property":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","type":"topic","title":"indices","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Words","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property"]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Words","preciseIdentifier":"s:6BigIntAAV5WordsV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"externalID":"s:6BigIntAAV5WordsV7indicesSnySiGvp","title":"indices","role":"symbol","symbolKind":"property","roleHeading":"Instance Property"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":".","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV","text":"Words"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","text":"Indices","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"RandomAccessCollection.indices"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Indices","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","navigatorTitle":[{"text":"Indices","kind":"identifier"}],"role":"symbol","title":"BigInt.Words.Indices","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/indices-swift.property":{"kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":": ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV5WordsV","text":"Words","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV5WordsV7Indicesa","text":"Indices"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/indices-swift.property","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","role":"symbol","title":"indices","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias.json b/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias.json index 1733e0d..1455c3a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Indices","kind":"identifier"},{"text":" = ","kind":"text"},{"text":"CountableRange","kind":"typeIdentifier","preciseIdentifier":"s:s14CountableRangea"},{"kind":"text","text":"<"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":">"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.Indices"},{"type":"text","text":"."}],"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"kind":"identifier","text":"Indices"}],"externalID":"s:6BigIntAAV5WordsV7Indicesa","navigatorTitle":[{"kind":"identifier","text":"Indices"}],"symbolKind":"typealias","title":"BigInt.Words.Indices","modules":[{"name":"BigInt"}],"roleHeading":"Type Alias"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","interfaceLanguage":"swift"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","type":"topic","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Indices","kind":"identifier"}],"title":"BigInt.Words.Indices","kind":"symbol","abstract":[],"navigatorTitle":[{"text":"Indices","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","interfaceLanguage":"swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.Indices","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Indices","kind":"identifier"},{"kind":"text","text":" = "},{"preciseIdentifier":"s:s14CountableRangea","text":"CountableRange","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":">"}],"languages":["swift"]}]}],"metadata":{"roleHeading":"Type Alias","navigatorTitle":[{"kind":"identifier","text":"Indices"}],"role":"symbol","title":"BigInt.Words.Indices","modules":[{"name":"BigInt"}],"symbolKind":"typealias","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Indices","kind":"identifier"}],"externalID":"s:6BigIntAAV5WordsV7Indicesa"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Indices-swift.typealias":{"kind":"symbol","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Indices","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Indices-swift.typealias","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","navigatorTitle":[{"text":"Indices","kind":"identifier"}],"role":"symbol","title":"BigInt.Words.Indices","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/isempty.json b/docs/data/documentation/bigint/bigint/words-swift.struct/isempty.json index c14fd3c..d0fd3bf 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/isempty.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/isempty.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.isEmpty","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"isEmpty","roleHeading":"Instance Property","symbolKind":"property","role":"symbol","externalID":"s:SlsE7isEmptySbvp::SYNTHESIZED::s:6BigIntAAV5WordsV"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/isempty"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/isEmpty":{"title":"isEmpty","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/isempty"]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.isEmpty","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty"},"metadata":{"roleHeading":"Instance Property","extendedModule":"Swift","title":"isEmpty","symbolKind":"property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:SlsE7isEmptySbvp::SYNTHESIZED::s:6BigIntAAV5WordsV"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/isEmpty":{"abstract":[],"title":"isEmpty","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/isEmpty","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/last(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/last(where:).json index 810bcf0..253f5c1 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/last(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/last(where:).json @@ -1 +1 @@ -{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.last(where:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"roleHeading":"Instance Method","symbolKind":"method","title":"last(where:)","role":"symbol","externalID":"s:SKsE4last5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"last"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","title":"last(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"last(where:)","externalID":"s:SKsE4last5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.last(where:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last(where:)":{"title":"last(where:)","type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/last.json b/docs/data/documentation/bigint/bigint/words-swift.struct/last.json index c05e71f..ee4b074 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/last.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/last.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.last"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"role":"symbol","externalID":"s:SKsE4last7ElementQzSgvp::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"last","extendedModule":"Swift","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"roleHeading":"Instance Property"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/last"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last":{"kind":"symbol","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","title":"last","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.last"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/last"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"last"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"? { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"externalID":"s:SKsE4last7ElementQzSgvp::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"last","extendedModule":"Swift","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"property","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/last":{"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"title":"last","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/last","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","abstract":[],"type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(of:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(of:).json index 5bddee0..cea7719 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(of:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(of:).json @@ -1 +1 @@ -{"metadata":{"symbolKind":"method","role":"symbol","externalID":"s:SKsSQ7ElementRpzrlE9lastIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"lastIndex(of:)","extendedModule":"Swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.lastIndex(of:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":"?"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastIndex"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"title":"lastIndex(of:)","role":"symbol","type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)"]}],"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"externalID":"s:SKsSQ7ElementRpzrlE9lastIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":"?"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"lastIndex(of:)","symbolKind":"method","role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.lastIndex(of:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(of:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(of:)","role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"lastIndex(of:)","kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(where:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(where:).json index 0b0cede..48ac217 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(where:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/lastindex(where:).json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"metadata":{"externalID":"s:SKsE9lastIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"lastIndex(where:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.lastIndex(where:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","title":"lastIndex(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)"]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.lastIndex(where:)"},{"text":".","type":"text"}],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","title":"lastIndex(where:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"extendedModule":"Swift","role":"symbol","externalID":"s:SKsE9lastIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lastIndex(where:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lastIndex(where:)","title":"lastIndex(where:)","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/lazy.json b/docs/data/documentation/bigint/bigint/words-swift.struct/lazy.json index c35fe89..8e6050a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/lazy.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/lazy.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.lazy","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"lazy","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":"> { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lazy","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier","text":"LazySequence"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"roleHeading":"Instance Property","title":"lazy","symbolKind":"property","extendedModule":"Swift","externalID":"s:STsE4lazys12LazySequenceVyxGvp::SYNTHESIZED::s:6BigIntAAV5WordsV"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","role":"symbol","title":"lazy","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier","text":"LazySequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.lazy"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":"> { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"symbolKind":"property","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"lazy","extendedModule":"Swift","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol","externalID":"s:STsE4lazys12LazySequenceVyxGvp::SYNTHESIZED::s:6BigIntAAV5WordsV"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"text":"LazySequence","kind":"typeIdentifier","preciseIdentifier":"s:s12LazySequenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","abstract":[],"type":"topic","kind":"symbol","title":"lazy","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:).json index ba0bc65..14aeccd 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsSL7ElementRpzrlE25lexicographicallyPrecedesySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","title":"lexicographicallyPrecedes(_:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.lexicographicallyPrecedes(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","kind":"symbol","role":"symbol","title":"lexicographicallyPrecedes(_:)","abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.lexicographicallyPrecedes(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"roleHeading":"Instance Method","externalID":"s:STsSL7ElementRpzrlE25lexicographicallyPrecedesySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"method","role":"symbol","title":"lexicographicallyPrecedes(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","abstract":[],"type":"topic","title":"lexicographicallyPrecedes(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:).json index a6917f8..1f617af 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"]}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areInIncreasingOrder"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.lexicographicallyPrecedes(_:by:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","externalID":"s:STsE25lexicographicallyPrecedes_2bySbqd___Sb7ElementQz_ADtKXEtKSTRd__ACQyd__ADRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","symbolKind":"method","title":"lexicographicallyPrecedes(_:by:)","extendedModule":"Swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","role":"symbol","title":"lexicographicallyPrecedes(_:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.lexicographicallyPrecedes(_:by:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areInIncreasingOrder"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":" : ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":" == "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:STsE25lexicographicallyPrecedes_2bySbqd___Sb7ElementQz_ADtKXEtKSTRd__ACQyd__ADRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","title":"lexicographicallyPrecedes(_:by:)","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"title":"lexicographicallyPrecedes(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/makeiterator().json b/docs/data/documentation/bigint/bigint/words-swift.struct/makeiterator().json index 098c77b..ea55c45 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/makeiterator().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/makeiterator().json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","conformance":{"constraints":[{"type":"codeVoice","code":"Iterator"},{"text":" is ","type":"text"},{"code":"IndexingIterator","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"externalID":"s:Slss16IndexingIteratorVyxG0B0RtzrlE04makeB0ACyF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"makeIterator()","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.makeIterator()"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"makeIterator","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"IndexingIterator","preciseIdentifier":"s:s16IndexingIteratorV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/makeIterator()":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"kind":"text","text":"() -> "},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol","role":"symbol","title":"makeIterator()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()","conformance":{"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"text":"IndexingIterator","preciseIdentifier":"s:s16IndexingIteratorV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.makeIterator()"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","role":"symbol","title":"makeIterator()","externalID":"s:Slss16IndexingIteratorVyxG0B0RtzrlE04makeB0ACyF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","symbolKind":"method","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Iterator"},{"text":" is ","type":"text"},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s16IndexingIteratorV","text":"IndexingIterator","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/makeIterator()":{"title":"makeIterator()","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Iterator","type":"codeVoice"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"makeIterator"},{"kind":"text","text":"() -> "},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/makeIterator()"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc.json b/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc.json index c13187d..f48191e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.map(_:)"},{"text":".","type":"text"}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc"]}],"metadata":{"externalID":"s:SlsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","role":"symbol","title":"map(_:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"] "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-3nxcc":{"type":"topic","title":"map(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.map(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"] "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc"},"sections":[],"metadata":{"extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"map(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","externalID":"s:SlsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-3nxcc":{"abstract":[],"title":"map(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-3nxcc","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p.json b/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p.json index 6b4fd64..2bd596e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p.json @@ -1 +1 @@ -{"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"map(_:)","externalID":"s:STsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","extendedModule":"Swift","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"text":"]","kind":"text"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.map(_:)"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"transform"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":" : "},{"text":"Error","preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-4k48p":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p","title":"map(_:)","type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.map(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p"},"metadata":{"title":"map(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","extendedModule":"Swift","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"externalID":"s:STsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":" : ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-4k48p":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","title":"map(_:)","abstract":[],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/max().json b/docs/data/documentation/bigint/bigint/words-swift.struct/max().json index 99f87ec..e9dddf4 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/max().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/max().json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.max()","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/max()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"max()","symbolKind":"method","role":"symbol","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"externalID":"s:STsSL7ElementRpzrlE3maxABSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max()":{"abstract":[],"type":"topic","title":"max()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"role":"symbol"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"metadata":{"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"max()","roleHeading":"Instance Method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"externalID":"s:STsSL7ElementRpzrlE3maxABSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/max()"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.max()","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max()":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","title":"max()","role":"symbol","abstract":[],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]}},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/max(by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/max(by:).json index 72d15ff..46f2a71 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/max(by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/max(by:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.max(by:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)"]}],"kind":"symbol","metadata":{"roleHeading":"Instance Method","title":"max(by:)","extendedModule":"Swift","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"externalID":"s:STsE3max2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areInIncreasingOrder"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max(by:)":{"abstract":[],"type":"topic","title":"max(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.max(by:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"title":"max(by:)","externalID":"s:STsE3max2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max(by:)":{"kind":"symbol","abstract":[],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"title":"max(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/min().json b/docs/data/documentation/bigint/bigint/words-swift.struct/min().json index 57dc05e..88eb267 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/min().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/min().json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/min()"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"min()","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"externalID":"s:STsSL7ElementRpzrlE3minABSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.min()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","role":"symbol","title":"min()","type":"topic","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"externalID":"s:STsSL7ElementRpzrlE3minABSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"min()","extendedModule":"Swift","roleHeading":"Instance Method","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","role":"symbol"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.min()"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/min()"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min()":{"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","abstract":[],"title":"min()","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/min(by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/min(by:).json index 69f256c..0a304c7 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/min(by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/min(by:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.min(by:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"title":"min(by:)","role":"symbol","externalID":"s:STsE3min2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areInIncreasingOrder"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min(by:)":{"abstract":[],"type":"topic","title":"min(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"min"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"title":"min(by:)","externalID":"s:STsE3min2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.min(by:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areInIncreasingOrder"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min(by:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","abstract":[],"title":"min(by:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(_:).json index b3e8c9e..8a1dc25 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(_:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.prefix(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"role":"symbol","title":"prefix(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SlsE6prefixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"Swift"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"maxLength","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)"]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","abstract":[],"title":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt","type":"topic","role":"collection","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","abstract":[],"type":"topic","title":"prefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"maxLength","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"role":"symbol","roleHeading":"Instance Method","externalID":"s:SlsE6prefixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"title":"prefix(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.prefix(_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(_:)":{"abstract":[],"title":"prefix(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(through:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(through:).json index c0a0fcb..2b746c6 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(through:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(through:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.prefix(through:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"through"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"position"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"extendedModule":"Swift","role":"symbol","externalID":"s:SlsE6prefix7through11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","roleHeading":"Instance Method","title":"prefix(through:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"through"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","interfaceLanguage":"swift"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(through:)":{"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"through"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","role":"symbol","abstract":[],"title":"prefix(through:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SlsE6prefix7through11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","title":"prefix(through:)","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"kind":"text","text":" "},{"text":"position","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.prefix(through:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(through:)":{"abstract":[],"title":"prefix(through:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(through:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"through"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(upto:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(upto:).json index 72d22db..4e43865 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(upto:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(upto:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.prefix(upTo:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"kind":"text","text":"("},{"kind":"externalParam","text":"upTo"},{"text":" ","kind":"text"},{"text":"end","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"upTo"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"symbolKind":"method","externalID":"s:SlsE6prefix4upTo11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"prefix(upTo:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(upTo:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)","role":"symbol","title":"prefix(upTo:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"upTo"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.prefix(upTo:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"extendedModule":"Swift","symbolKind":"method","externalID":"s:SlsE6prefix4upTo11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"role":"symbol","title":"prefix(upTo:)","roleHeading":"Instance Method"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"upTo"},{"kind":"text","text":" "},{"text":"end","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}]}]}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(upTo:)":{"title":"prefix(upTo:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(upTo:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(while:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(while:).json index 006c37a..e4696ca 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(while:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/prefix(while:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SlsE6prefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","title":"prefix(while:)","symbolKind":"method"},"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.prefix(while:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","title":"prefix(while:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)"]}],"metadata":{"roleHeading":"Instance Method","title":"prefix(while:)","extendedModule":"Swift","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","externalID":"s:SlsE6prefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.prefix(while:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/prefix(while:)":{"role":"symbol","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)","title":"prefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/prefix(while:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/publisher.json b/docs/data/documentation/bigint/bigint/words-swift.struct/publisher.json index 952bfae..9eeec63 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/publisher.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/publisher.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/publisher"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.publisher"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"publisher"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO","kind":"typeIdentifier","text":"Publishers"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:7Combine10PublishersO8SequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"text":"> { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Property","title":"publisher","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"publisher","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Publishers","preciseIdentifier":"s:7Combine10PublishersO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"externalID":"s:ST7CombineE9publisherAA10PublishersO8SequenceVy_xs5NeverOGvp::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"name":"iOS","deprecated":false,"beta":false,"introducedAt":"13.0","unavailable":false},{"name":"macOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"10.15"},{"deprecated":false,"beta":false,"name":"tvOS","unavailable":false,"introducedAt":"13.0"},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"6.0"}],"symbolKind":"property","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/publisher":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7Combine10PublishersO","text":"Publishers","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","kind":"typeIdentifier","text":"Sequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","kind":"symbol","role":"symbol","title":"publisher","abstract":[],"type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"platforms":[{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"13.0","name":"iOS"},{"introducedAt":"10.15","beta":false,"deprecated":false,"unavailable":false,"name":"macOS"},{"unavailable":false,"beta":false,"introducedAt":"13.0","name":"tvOS","deprecated":false},{"introducedAt":"6.0","beta":false,"name":"watchOS","unavailable":false,"deprecated":false}],"role":"symbol","symbolKind":"property","externalID":"s:ST7CombineE9publisherAA10PublishersO8SequenceVy_xs5NeverOGvp::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO8SequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Property","title":"publisher"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/publisher"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.publisher"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO","text":"Publishers","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:7Combine10PublishersO8SequenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"text":"> { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/publisher":{"role":"symbol","abstract":[],"title":"publisher","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"publisher"},{"text":": ","kind":"text"},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","kind":"typeIdentifier","text":"Sequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations.json b/docs/data/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations.json index 0c842b8..66b1281 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations.json @@ -1 +1 @@ -{"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"],"title":"Instance Methods","anchor":"Instance-Methods"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"sections":[],"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"RandomAccessCollection Implementations"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","title":"index(_:offsetBy:limitedBy:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/RandomAccessCollection-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"],"generated":true,"anchor":"Instance-Methods"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"RandomAccessCollection Implementations","role":"collectionGroup"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"index(_:offsetBy:limitedBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement().json b/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement().json index fd07570..f5be902 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement().json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()"]}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"randomElement()","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE13randomElement0B0QzSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","extendedModule":"Swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.randomElement()","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","abstract":[],"title":"randomElement()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.randomElement()"},{"type":"text","text":"."}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"externalID":"s:SlsE13randomElement0B0QzSgyF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"randomElement()","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()"]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement()":{"abstract":[],"title":"randomElement()","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement(using:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement(using:).json index 91c924c..c01c87b 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement(using:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/randomelement(using:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"generator"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"? ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SG","text":"RandomNumberGenerator"}]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"title":"randomElement(using:)","roleHeading":"Instance Method","extendedModule":"Swift","externalID":"s:SlsE13randomElement5using0B0QzSgqd__z_tSGRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)"]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.randomElement(using:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement(using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"kind":"symbol","abstract":[],"type":"topic","title":"randomElement(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"text":"generator","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"? "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SG","text":"RandomNumberGenerator"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.randomElement(using:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)"},"metadata":{"title":"randomElement(using:)","roleHeading":"Instance Method","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomElement"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"role":"symbol","externalID":"s:SlsE13randomElement5using0B0QzSgqd__z_tSGRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/randomElement(using:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","type":"topic","title":"randomElement(using:)","role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/randomElement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/ranges(of:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/ranges(of:).json index 4326dbc..c853b0a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/ranges(of:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/ranges(of:).json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">] "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"Collection","preciseIdentifier":"s:Sl","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"languages":["swift"]}]}],"metadata":{"platforms":[{"unavailable":false,"deprecated":false,"introducedAt":"16.0","beta":false,"name":"iOS"},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false},{"beta":false,"introducedAt":"16.0","name":"tvOS","deprecated":false,"unavailable":false},{"introducedAt":"9.0","deprecated":false,"name":"watchOS","unavailable":false,"beta":false}],"roleHeading":"Instance Method","extendedModule":"Swift","title":"ranges(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">]","kind":"text"}],"role":"symbol","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE6ranges2ofSaySny5IndexQzGGqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.ranges(of:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/ranges(of:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">]","kind":"text"}],"title":"ranges(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"abstract":[],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","type":"topic","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"platforms":[{"unavailable":false,"introducedAt":"16.0","beta":false,"deprecated":false,"name":"iOS"},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"13.0","unavailable":false},{"unavailable":false,"name":"tvOS","introducedAt":"16.0","deprecated":false,"beta":false},{"unavailable":false,"introducedAt":"9.0","deprecated":false,"beta":false,"name":"watchOS"}],"title":"ranges(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">]"}],"extendedModule":"Swift","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE6ranges2ofSaySny5IndexQzGGqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.ranges(of:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> ["},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl","text":"Collection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/ranges(of:)":{"abstract":[],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"ranges(of:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/ranges(of:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">]","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(_:_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(_:_:).json index b6ae8d1..eb12919 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(_:_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(_:_:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}],"externalID":"s:STsE6reduceyqd__qd___qd__qd___7ElementQztKXEtKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"reduce(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"initialResult","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"nextPartialResult","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)"]}],"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.reduce(_:_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(_:_:)":{"abstract":[],"type":"topic","title":"reduce(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"}}} \ No newline at end of file +{"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.reduce(_:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", ("},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"externalID":"s:STsE6reduceyqd__qd___qd__qd___7ElementQztKXEtKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"reduce(_:_:)"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"initialResult","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"nextPartialResult"},{"kind":"text","text":": ("},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(_:_:)":{"role":"symbol","abstract":[],"title":"reduce(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(into:_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(into:_:).json index bc16d9a..281a97d 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(into:_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/reduce(into:_:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"kind":"internalParam","text":"initialResult"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"updateAccumulatingResult","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ()) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.reduce(into:_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"extendedModule":"Swift","externalID":"s:STsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"reduce(into:_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)"]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(into:_:)":{"abstract":[],"type":"topic","title":"reduce(into:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Result"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"kind":"text","text":" "},{"text":"initialResult","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"updateAccumulatingResult","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.reduce(into:_:)"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"externalID":"s:STsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"reduce(into:_:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(into:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}],"role":"symbol","title":"reduce(into:_:)","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:).json index b5b5be3..9e8fd77 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.removingSubranges(_:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"subranges"},{"kind":"text","text":": "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"removingSubranges","kind":"identifier"},{"kind":"text","text":"("},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s18DiscontiguousSliceV","text":"DiscontiguousSlice","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"extendedModule":"Swift","role":"symbol","title":"removingSubranges(_:)","platforms":[{"name":"iOS","beta":false,"unavailable":false,"deprecated":false,"introducedAt":"18.0"},{"name":"macOS","introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"name":"tvOS","beta":false,"deprecated":false,"introducedAt":"18.0"},{"name":"watchOS","introducedAt":"11.0","beta":false,"deprecated":false,"unavailable":false},{"beta":false,"introducedAt":"2.0","unavailable":false,"name":"visionOS","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SlsE17removingSubrangesys18DiscontiguousSliceVyxGs8RangeSetVy5IndexQzGF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/removingSubranges(_:)":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removingSubranges","kind":"identifier"},{"text":"(","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","type":"topic","title":"removingSubranges(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"removingSubranges(_:)","platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"beta":false,"introducedAt":"18.0"},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"15.0"},{"name":"tvOS","beta":false,"unavailable":false,"introducedAt":"18.0","deprecated":false},{"beta":false,"introducedAt":"11.0","deprecated":false,"unavailable":false,"name":"watchOS"},{"beta":false,"deprecated":false,"introducedAt":"2.0","name":"visionOS","unavailable":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"text":"RangeSet","preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"method","externalID":"s:SlsE17removingSubrangesys18DiscontiguousSliceVyxGs8RangeSetVy5IndexQzGF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.removingSubranges(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"removingSubranges"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"subranges","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s8RangeSetV","text":"RangeSet","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/removingSubranges(_:)":{"abstract":[],"title":"removingSubranges(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/removingSubranges(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">) -> ","kind":"text"},{"preciseIdentifier":"s:s18DiscontiguousSliceV","text":"DiscontiguousSlice","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/reversed().json b/docs/data/documentation/bigint/bigint/words-swift.struct/reversed().json index c72c26c..14acfa8 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/reversed().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/reversed().json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.reversed()","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:s18ReversedCollectionV","kind":"typeIdentifier","text":"ReversedCollection"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"reversed()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reversed"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"externalID":"s:SKsE8reverseds18ReversedCollectionVyxGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reversed()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18ReversedCollectionV","kind":"typeIdentifier","text":"ReversedCollection"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","abstract":[],"type":"topic","title":"reversed()"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.reversed()"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"ReversedCollection","preciseIdentifier":"s:s18ReversedCollectionV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"ReversedCollection","preciseIdentifier":"s:s18ReversedCollectionV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"reversed()","externalID":"s:SKsE8reverseds18ReversedCollectionVyxGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reversed()":{"role":"symbol","title":"reversed()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","abstract":[],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reversed()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/sequence-implementations.json b/docs/data/documentation/bigint/bigint/words-swift.struct/sequence-implementations.json index 6d9d30e..e625752 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/sequence-implementations.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/sequence-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"role":"collectionGroup","title":"Sequence Implementations","roleHeading":"API Collection"},"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"generated":true,"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher"],"anchor":"Instance-Properties"},{"anchor":"Instance-Methods","title":"Instance Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/publisher":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:7Combine10PublishersO","text":"Publishers","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","kind":"typeIdentifier","text":"Sequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","kind":"symbol","role":"symbol","title":"publisher","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first(where:)":{"abstract":[],"type":"topic","title":"first(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-4yn8t":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","kind":"symbol","role":"symbol","title":"filter(_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count(where:)":{"abstract":[],"type":"topic","title":"count(where:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled()":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","kind":"symbol","role":"symbol","title":"shuffled()","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compactMap(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","role":"symbol","type":"topic","title":"compactMap(_:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compactMap"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(_:)":{"abstract":[],"type":"topic","title":"contains(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","kind":"symbol","role":"symbol","title":"lexicographicallyPrecedes(_:)","abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/enumerated()":{"abstract":[],"type":"topic","title":"enumerated()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"enumerated"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","kind":"symbol","role":"symbol","title":"starts(with:)","abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max()":{"abstract":[],"type":"topic","title":"max()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formatted(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","kind":"symbol","role":"symbol","title":"formatted(_:)","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted()":{"abstract":[],"type":"topic","title":"sorted()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)","role":"symbol","title":"starts(with:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(_:_:)":{"abstract":[],"type":"topic","title":"reduce(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","role":"symbol","title":"withContiguousStorageIfAvailable(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">(("},{"preciseIdentifier":"s:SR","text":"UnsafeBufferPointer","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-3zvyz":{"abstract":[],"type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-7hf9w":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","role":"symbol","title":"sorted(using:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/allSatisfy(_:)":{"abstract":[],"type":"topic","title":"allSatisfy(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"allSatisfy","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","role":"symbol","title":"elementsEqual(_:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled(using:)":{"abstract":[],"type":"topic","title":"shuffled(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-62tom":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","role":"symbol","title":"flatMap(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min(by:)":{"abstract":[],"type":"topic","title":"min(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","role":"symbol","title":"lazy","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier","text":"LazySequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(by:)":{"abstract":[],"type":"topic","title":"sorted(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-4zycj":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","role":"symbol","title":"flatMap(_:)","deprecated":true,"type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max(by:)":{"abstract":[],"type":"topic","title":"max(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-4k48p":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","role":"symbol","title":"map(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(into:_:)":{"abstract":[],"type":"topic","title":"reduce(into:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(where:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","role":"symbol","title":"contains(where:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compare(_:_:)":{"abstract":[],"type":"topic","title":"compare(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier","text":"Compared"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@E@NSComparisonResult","kind":"typeIdentifier","text":"ComparisonResult"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","role":"symbol","title":"lexicographicallyPrecedes(_:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-3j7n6":{"abstract":[],"type":"topic","title":"sorted(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/forEach(_:)":{"type":"topic","title":"forEach(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"}],"role":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","kind":"symbol","role":"symbol","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"title":"elementsEqual(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","role":"symbol","title":"min()","type":"topic","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()"}}} \ No newline at end of file +{"metadata":{"title":"Sequence Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations"]}],"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher"],"title":"Instance Properties","anchor":"Instance-Properties","generated":true},{"anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"],"title":"Instance Methods","generated":true}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-4yn8t":{"role":"symbol","abstract":[],"title":"filter(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-4yn8t","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"Predicate","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","title":"shuffled()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffled"},{"text":"() -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol","abstract":[],"type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max()":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max()","title":"max()","role":"symbol","abstract":[],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]}},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/enumerated()":{"type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","title":"enumerated()","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/enumerated()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/filter(_:)-3zvyz":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/filter(_:)-3zvyz","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","type":"topic","kind":"symbol","title":"filter(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-3j7n6":{"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","abstract":[],"title":"sorted(using:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/publisher":{"role":"symbol","abstract":[],"title":"publisher","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/publisher","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"publisher"},{"text":": ","kind":"text"},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","kind":"typeIdentifier","text":"Sequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:by:)":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)","kind":"symbol","title":"starts(with:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/map(_:)-4k48p":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/map(_:)-4k48p","title":"map(_:)","abstract":[],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lazy","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"text":"LazySequence","kind":"typeIdentifier","preciseIdentifier":"s:s12LazySequenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","abstract":[],"type":"topic","kind":"symbol","title":"lazy","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/allSatisfy(_:)":{"role":"symbol","abstract":[],"title":"allSatisfy(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/allSatisfy(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(_:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(_:)","abstract":[],"title":"contains(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/forEach(_:)":{"role":"symbol","abstract":[],"title":"forEach(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/forEach(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min()":{"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min()","abstract":[],"title":"min()","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(_:_:)":{"role":"symbol","abstract":[],"title":"reduce(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/min(by:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/min(by:)","abstract":[],"title":"min(by:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/formatted(_:)":{"role":"symbol","abstract":[],"title":"formatted(_:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol","title":"elementsEqual(_:)","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","abstract":[],"title":"withContiguousStorageIfAvailable(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"UnsafeBufferPointer","preciseIdentifier":"s:SR","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:)":{"role":"symbol","abstract":[],"title":"starts(with:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"text":": ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/elementsEqual(_:by:)":{"title":"elementsEqual(_:by:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/elementsEqual(_:by:)","type":"topic","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-4zycj":{"title":"flatMap(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"deprecated":true,"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-4zycj","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/max(by:)":{"kind":"symbol","abstract":[],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"title":"max(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/max(by:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","abstract":[],"type":"topic","title":"lexicographicallyPrecedes(_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/first(where:)":{"abstract":[],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/first(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","title":"first(where:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-7hf9w":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"title":"sorted(using:)","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","type":"topic","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"title":"lexicographicallyPrecedes(_:by:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/flatMap(_:)-62tom":{"role":"symbol","abstract":[],"title":"flatMap(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/flatMap(_:)-62tom","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"SegmentOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/count(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"type":"topic","abstract":[],"title":"count(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/count(where:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(by:)":{"role":"symbol","abstract":[],"title":"sorted(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compactMap(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compactMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"type":"topic","abstract":[],"title":"compactMap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compactMap(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/compare(_:_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/compare(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"}],"role":"symbol","type":"topic","kind":"symbol","title":"compare(_:_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted()":{"role":"symbol","abstract":[],"title":"sorted()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/contains(where:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"type":"topic","abstract":[],"title":"contains(where:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/contains(where:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/reduce(into:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/reduce(into:_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}],"role":"symbol","title":"reduce(into:_:)","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled(using:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"title":"shuffled(using:)","role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled().json b/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled().json index 872cc4a..1454345 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled().json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()"},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"shuffled()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"role":"symbol","externalID":"s:STsE8shuffledSay7ElementQzGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()"]}],"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.shuffled()"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffled"},{"text":"() -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled()":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","kind":"symbol","role":"symbol","title":"shuffled()","abstract":[],"type":"topic"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.shuffled()"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","title":"shuffled()","symbolKind":"method","extendedModule":"Swift","role":"symbol","externalID":"s:STsE8shuffledSay7ElementQzGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","title":"shuffled()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"shuffled"},{"text":"() -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol","abstract":[],"type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled(using:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled(using:).json index 8562cb6..4b0ad9b 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled(using:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/shuffled(using:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"externalID":"s:STsE8shuffled5usingSay7ElementQzGqd__z_tSGRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"shuffled(using:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.shuffled(using:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"text":"generator","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomNumberGenerator","preciseIdentifier":"s:SG","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled(using:)":{"abstract":[],"type":"topic","title":"shuffled(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.shuffled(using:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)"]}],"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE8shuffled5usingSay7ElementQzGqd__z_tSGRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"shuffled(using:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"role":"symbol","symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SG","kind":"typeIdentifier","text":"RandomNumberGenerator"}]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/shuffled(using:)":{"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/shuffled(using:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"title":"shuffled(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted().json b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted().json index 307e082..4d81c9c 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted().json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted().json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","externalID":"s:STsSL7ElementRpzrlE6sortedSayABGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"sorted()","extendedModule":"Swift","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}]}},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.sorted()"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted()":{"abstract":[],"type":"topic","title":"sorted()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"roleHeading":"Instance Method","title":"sorted()","role":"symbol","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"externalID":"s:STsSL7ElementRpzrlE6sortedSayABGyF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.sorted()","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted()":{"role":"symbol","abstract":[],"title":"sorted()","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(by:).json index 333f470..166af0a 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(by:).json @@ -1 +1 @@ -{"metadata":{"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"title":"sorted(by:)","roleHeading":"Instance Method","externalID":"s:STsE6sorted2bySay7ElementQzGSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","symbolKind":"method"},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areInIncreasingOrder"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.sorted(by:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(by:)":{"abstract":[],"type":"topic","title":"sorted(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"externalID":"s:STsE6sorted2bySay7ElementQzGSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","title":"sorted(by:)","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted(by:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(by:)":{"role":"symbol","abstract":[],"title":"sorted(by:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6.json b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6.json index 4216fee..0d0b651 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.sorted(using:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"metadata":{"role":"symbol","platforms":[{"unavailable":false,"beta":false,"introducedAt":"15.0","deprecated":false,"name":"iOS"},{"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"beta":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS","deprecated":false},{"beta":false,"deprecated":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS"}],"externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tSTRd__AA14SortComparatorRd_0_ADQyd__Rsd_0_8ComparedQyd_0_AERSr0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"sorted(using:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":" "},{"text":"comparators","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier","text":"SortComparator"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-3j7n6":{"abstract":[],"type":"topic","title":"sorted(using:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"comparators"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"] "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","kind":"typeIdentifier","text":"Sequence"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier","text":"SortComparator"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"}],"platforms":["macOS"]}]}],"kind":"symbol","metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"15.0","beta":false},{"introducedAt":"12.0","unavailable":false,"name":"macOS","beta":false,"deprecated":false},{"beta":false,"deprecated":false,"unavailable":false,"name":"tvOS","introducedAt":"15.0"},{"introducedAt":"8.0","name":"watchOS","beta":false,"deprecated":false,"unavailable":false}],"title":"sorted(using:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tSTRd__AA14SortComparatorRd_0_ADQyd__Rsd_0_8ComparedQyd_0_AERSr0_lF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.sorted(using:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-3j7n6":{"role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-3j7n6","abstract":[],"title":"sorted(using:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w.json b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w.json index 5dfe56c..21d38d1 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","platforms":[{"unavailable":false,"beta":false,"introducedAt":"15.0","deprecated":false,"name":"iOS"},{"name":"macOS","deprecated":false,"beta":false,"introducedAt":"12.0","unavailable":false},{"name":"tvOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"15.0"},{"deprecated":false,"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"Comparator","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"symbolKind":"method","externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tAA14SortComparatorRd__8ComparedQyd__AERSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"sorted(using:)","roleHeading":"Instance Method","extendedModule":"Swift"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"text":"comparator","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Comparator","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"SortComparator","preciseIdentifier":"s:10Foundation14SortComparatorP"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted(using:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-7hf9w":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","role":"symbol","title":"sorted(using:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"comparator","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"SortComparator","preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.sorted(using:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"title":"sorted(using:)","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0"},{"unavailable":false,"beta":false,"deprecated":false,"name":"macOS","introducedAt":"12.0"},{"name":"tvOS","introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false},{"beta":false,"unavailable":false,"introducedAt":"8.0","name":"watchOS","deprecated":false}],"externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tAA14SortComparatorRd__8ComparedQyd__AERSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/sorted(using:)-7hf9w":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"title":"sorted(using:)","type":"topic","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/sorted(using:)-7hf9w","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json index 21cb122..b96e29b 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json @@ -1 +1 @@ -{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":" = Int.max, "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = true, "},{"kind":"externalParam","text":"whereSeparator"},{"text":" ","kind":"text"},{"text":"isSeparator","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:SlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","roleHeading":"Instance Method","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"text":"whereSeparator","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":", "},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" = Int.max, "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true, ","kind":"text"},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isSeparator","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"},{"text":"]","kind":"text"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","extendedModule":"Swift","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"whereSeparator"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","externalID":"s:SlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF::SYNTHESIZED::s:6BigIntAAV5WordsV"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"role":"symbol","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"text":"whereSeparator","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"},{"text":"]","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json index 0996659..df5596e 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" = Int.max, ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"},{"kind":"text","text":"]"}],"platforms":["macOS"]}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.split(separator:maxSplits:omittingEmptySubsequences:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"metadata":{"extendedModule":"Swift","symbolKind":"method","externalID":"s:SlsSQ7ElementRpzrlE5split9separator9maxSplits25omittingEmptySubsequencesSay11SubSequenceQzGAB_SiSbtF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","roleHeading":"Instance Method","title":"split(separator:maxSplits:omittingEmptySubsequences:)","conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","kind":"symbol","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"]}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"externalID":"s:SlsSQ7ElementRpzrlE5split9separator9maxSplits25omittingEmptySubsequencesSay11SubSequenceQzGAB_SiSbtF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","title":"split(separator:maxSplits:omittingEmptySubsequences:)","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]}},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.split(separator:maxSplits:omittingEmptySubsequences:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"separator"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" = Int.max, "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true) -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/startindex.json b/docs/data/documentation/bigint/bigint/words-swift.struct/startindex.json index aad9865..346e849 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/startindex.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/startindex.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.startIndex"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex"},"kind":"symbol","metadata":{"title":"startIndex","roleHeading":"Instance Property","symbolKind":"property","role":"symbol","externalID":"s:6BigIntAAV5WordsV10startIndexSivp","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"modules":[{"name":"BigInt"}]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"startIndex"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex","role":"symbol","title":"startIndex","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"startIndex"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/startindex"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.startIndex"},{"text":".","type":"text"}],"metadata":{"role":"symbol","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"roleHeading":"Instance Property","externalID":"s:6BigIntAAV5WordsV10startIndexSivp","title":"startIndex","modules":[{"name":"BigInt"}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/startIndex","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex","abstract":[],"title":"startIndex","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:).json index 8fb9c89..93d328c 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","metadata":{"title":"starts(with:)","externalID":"s:STsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","extendedModule":"Swift","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"possiblePrefix"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}],"languages":["swift"],"platforms":["macOS"]}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.starts(with:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:)":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","kind":"symbol","role":"symbol","title":"starts(with:)","abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"text":"PossiblePrefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"starts(with:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"possiblePrefix"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.starts(with:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:)":{"role":"symbol","abstract":[],"title":"starts(with:)","kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"text":": ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:by:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:by:).json index 0d26a50..f58a7b1 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:by:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/starts(with:by:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.starts(with:by:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"possiblePrefix"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areEquivalent","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"}]}]}],"metadata":{"extendedModule":"Swift","role":"symbol","externalID":"s:STsE6starts4with2bySbqd___Sb7ElementQz_ADQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","title":"starts(with:by:)","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)","role":"symbol","title":"starts(with:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.starts(with:by:)"},{"type":"text","text":"."}],"metadata":{"externalID":"s:STsE6starts4with2bySbqd___Sb7ElementQz_ADQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigIntAAV5WordsV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","title":"starts(with:by:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"possiblePrefix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areEquivalent","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/starts(with:by:)":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)","kind":"symbol","title":"starts(with:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/starts(with:by:)"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/subscript(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/subscript(_:).json index de1c55d..92bface 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/subscript(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/subscript(_:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"}],"roleHeading":"Instance Subscript","title":"subscript(_:)","externalID":"s:6BigIntAAV5WordsVySuSicip","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"subscript"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.subscript(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"index"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Su","text":"UInt"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/subscript(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Su","text":"UInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)","abstract":[],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","kind":"symbol","title":"subscript(_:)","role":"symbol"}}} \ No newline at end of file +{"sections":[],"metadata":{"title":"subscript(_:)","externalID":"s:6BigIntAAV5WordsVySuSicip","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"}],"symbolKind":"subscript","roleHeading":"Instance Subscript"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.subscript(_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"index","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/subscript(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/subscript(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","abstract":[],"title":"subscript(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"UInt","preciseIdentifier":"s:Su","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(_:).json index d691da5..e0e6dba 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(_:).json @@ -1 +1 @@ -{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SKsE6suffixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","roleHeading":"Instance Method","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","symbolKind":"method","title":"suffix(_:)"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.suffix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"maxLength"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(_:)":{"kind":"symbol","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","abstract":[],"title":"suffix(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","kind":"article","role":"collectionGroup","title":"BidirectionalCollection Implementations","abstract":[]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"maxLength","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"languages":["swift"]}]}],"kind":"symbol","sections":[],"metadata":{"extendedModule":"Swift","externalID":"s:SKsE6suffixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigIntAAV5WordsV","title":"suffix(_:)","roleHeading":"Instance Method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.suffix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/BidirectionalCollection-Implementations","kind":"article","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"topic","abstract":[],"role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(_:)":{"role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"title":"suffix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(from:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(from:).json index 0f188cb..97df96f 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(from:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/suffix(from:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SlsE6suffix4from11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","title":"suffix(from:)","extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.suffix(from:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"start"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(from:)":{"title":"suffix(from:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","abstract":[],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"start","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)"},"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"symbolKind":"method","extendedModule":"Swift","role":"symbol","title":"suffix(from:)","externalID":"s:SlsE6suffix4from11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.suffix(from:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/suffix(from:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/suffix(from:)","abstract":[],"type":"topic","title":"suffix(from:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:).json index ca6986d..03aa6d4 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:).json @@ -1 +1 @@ -{"metadata":{"title":"trimmingPrefix(_:)","extendedModule":"Swift","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Prefix"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"platforms":[{"name":"iOS","introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"name":"macOS","beta":false,"introducedAt":"13.0","deprecated":false},{"beta":false,"deprecated":false,"introducedAt":"16.0","name":"tvOS","unavailable":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"9.0"}],"roleHeading":"Instance Method","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE14trimmingPrefixy11SubSequenceQzqd__STRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Prefix"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"prefix"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Prefix"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","kind":"typeIdentifier","text":"Sequence"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"Prefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.trimmingPrefix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Prefix"},{"text":">(","kind":"text"},{"text":"Prefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","type":"topic","abstract":[],"title":"trimmingPrefix(_:)"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","interfaceLanguage":"swift"},"metadata":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE14trimmingPrefixy11SubSequenceQzqd__STRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigIntAAV5WordsV","platforms":[{"beta":false,"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false},{"deprecated":false,"unavailable":false,"name":"macOS","introducedAt":"13.0","beta":false},{"unavailable":false,"name":"tvOS","introducedAt":"16.0","deprecated":false,"beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"9.0"}],"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Prefix"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"trimmingPrefix(_:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.trimmingPrefix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"prefix"},{"kind":"text","text":": "},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Prefix"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"Prefix"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"languages":["swift"]}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(_:)":{"abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"trimmingPrefix(_:)","type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(_:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Prefix"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Prefix"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:).json index 7e61d95..d9972f3 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"kind":"symbol","metadata":{"symbolKind":"method","platforms":[{"name":"iOS","beta":false,"introducedAt":"16.0","deprecated":false,"unavailable":false},{"name":"macOS","introducedAt":"13.0","unavailable":false,"beta":false,"deprecated":false},{"name":"tvOS","beta":false,"introducedAt":"16.0","deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"9.0","unavailable":false}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"title":"trimmingPrefix(while:)","roleHeading":"Instance Method","externalID":"s:Sl17_StringProcessingE14trimmingPrefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.trimmingPrefix(while:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(while:)":{"type":"topic","role":"symbol","title":"trimmingPrefix(while:)","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"trimmingPrefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"metadata":{"roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","title":"trimmingPrefix(while:)","externalID":"s:Sl17_StringProcessingE14trimmingPrefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigIntAAV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"extendedModule":"Swift","symbolKind":"method","platforms":[{"unavailable":false,"name":"iOS","deprecated":false,"beta":false,"introducedAt":"16.0"},{"beta":false,"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"macOS"},{"name":"tvOS","introducedAt":"16.0","unavailable":false,"deprecated":false,"beta":false},{"introducedAt":"9.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.trimmingPrefix(while:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/trimmingPrefix(while:)":{"title":"trimmingPrefix(while:)","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/trimmingPrefix(while:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/underestimatedcount.json b/docs/data/documentation/bigint/bigint/words-swift.struct/underestimatedcount.json index 6159456..a2de322 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/underestimatedcount.json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/underestimatedcount.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.underestimatedCount"},{"text":".","type":"text"}],"metadata":{"externalID":"s:SlsE19underestimatedCountSivp::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"property","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Property","title":"underestimatedCount","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"underestimatedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}]},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"underestimatedCount"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/underestimatedCount":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"kind":"symbol","role":"symbol","title":"underestimatedCount","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.underestimatedCount","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"role":"symbol","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"externalID":"s:SlsE19underestimatedCountSivp::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"property","title":"underestimatedCount","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"underestimatedCount","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Collection-Implementations":{"type":"topic","abstract":[],"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Collection-Implementations","kind":"article","title":"Collection Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/underestimatedCount":{"title":"underestimatedCount","type":"topic","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"underestimatedCount","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/underestimatedCount"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:).json b/docs/data/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:).json index 89ea0cb..d0d53f8 100644 --- a/docs/data/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:).json +++ b/docs/data/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.withContiguousStorageIfAvailable(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">(("},{"preciseIdentifier":"s:SR","kind":"typeIdentifier","text":"UnsafeBufferPointer"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"title":"withContiguousStorageIfAvailable(_:)","extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","role":"symbol"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"body"},{"text":": (","kind":"text"},{"text":"UnsafeBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SR"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","abstract":[],"title":"BigInt.Words","type":"topic","url":"\/documentation\/bigint\/bigint\/words-swift.struct","fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","role":"symbol","title":"withContiguousStorageIfAvailable(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">(("},{"preciseIdentifier":"s:SR","text":"UnsafeBufferPointer","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":">) "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","kind":"article","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"body","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","preciseIdentifier":"s:SR","text":"UnsafeBufferPointer"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.withContiguousStorageIfAvailable(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"symbol","metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlF::SYNTHESIZED::s:6BigIntAAV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"text":">((","kind":"text"},{"text":"UnsafeBufferPointer","preciseIdentifier":"s:SR","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"title":"withContiguousStorageIfAvailable(_:)","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"url":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","abstract":[],"title":"withContiguousStorageIfAvailable(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"UnsafeBufferPointer","preciseIdentifier":"s:SR","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct/Sequence-Implementations":{"kind":"article","role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct\/Sequence-Implementations","url":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","type":"topic","title":"Sequence Implementations"},"doc://BigInt/documentation/BigInt/BigInt/Words-swift.struct":{"type":"topic","abstract":[],"role":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"navigatorTitle":[{"text":"Words","kind":"identifier"}],"url":"\/documentation\/bigint\/bigint\/words-swift.struct","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/Words-swift.struct","kind":"symbol","title":"BigInt.Words"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/zero.json b/docs/data/documentation/bigint/bigint/zero.json index 03b9ee7..d88032f 100644 --- a/docs/data/documentation/bigint/bigint/zero.json +++ b/docs/data/documentation/bigint/bigint/zero.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","externalID":"s:s18AdditiveArithmeticPss27ExpressibleByIntegerLiteralRzrlE4zeroxvpZ::SYNTHESIZED::s:6BigIntAAV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"zero","symbolKind":"property","conformance":{"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"roleHeading":"Type Property"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AdditiveArithmetic.zero"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/bigint\/zero"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","role":"collectionGroup","type":"topic","kind":"article","abstract":[],"title":"AdditiveArithmetic Implementations","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations"},"doc://BigInt/documentation/BigInt/BigInt/zero":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"ExpressibleByIntegerLiteral"},{"text":".","type":"text"}]},"kind":"symbol","type":"topic","title":"zero","role":"symbol","url":"\/documentation\/bigint\/bigint\/zero","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}]}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"zero","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations"]]},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:s18AdditiveArithmeticPss27ExpressibleByIntegerLiteralRzrlE4zeroxvpZ::SYNTHESIZED::s:6BigIntAAV","role":"symbol","roleHeading":"Type Property","symbolKind":"property","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"title":"zero","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"extendedModule":"Swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AdditiveArithmetic.zero"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/zero"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/zero":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"zero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/bigint\/zero","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/zero","title":"zero","abstract":[],"role":"symbol","conformance":{"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/AdditiveArithmetic-Implementations":{"type":"topic","url":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/bigint/~(_:).json b/docs/data/documentation/bigint/bigint/~(_:).json index f4fa21f..84e9dc5 100644 --- a/docs/data/documentation/bigint/bigint/~(_:).json +++ b/docs/data/documentation/bigint/bigint/~(_:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.~(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"roleHeading":"Operator","extendedModule":"BigInt","title":"~(_:)","externalID":"s:6BigIntAAV1topyA2BFZ","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"op"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/bigint\/~(_:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt/~(_:)":{"kind":"symbol","title":"~(_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/bigint\/~(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}],"abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/bigint\/bigint\/~(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"title":"~(_:)","externalID":"s:6BigIntAAV1topyA2BFZ","roleHeading":"Operator","extendedModule":"BigInt","symbolKind":"op"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.~(_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt/BinaryInteger-Implementations":{"url":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/BinaryInteger-Implementations","abstract":[],"type":"topic","title":"BinaryInteger Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigInt/~(_:)":{"abstract":[],"url":"\/documentation\/bigint\/bigint\/~(_:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt\/~(_:)","type":"topic","title":"~(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"~"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint.json b/docs/data/documentation/bigint/biguint.json index 5b06da6..1a9817c 100644 --- a/docs/data/documentation/bigint/biguint.json +++ b/docs/data/documentation/bigint/biguint.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Overview","level":2,"type":"heading","anchor":"overview"},{"type":"paragraph","inlineContent":[{"text":"Operations on big integers never overflow, but they may take a long time to execute.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The amount of memory (and address space) available is the only constraint to the magnitude of these numbers."}]},{"type":"paragraph","inlineContent":[{"text":"This particular big integer type uses base-2^64 digits to represent integers; you can think of it as a wrapper","type":"text"},{"type":"text","text":" "},{"type":"text","text":"around "},{"type":"codeVoice","code":"Array"},{"type":"text","text":". (In fact, "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":" only uses an array if there are more than two digits.)"}]}]}],"relationshipsSections":[{"title":"Conforms To","kind":"relationships","identifiers":["doc:\/\/BigInt\/s18AdditiveArithmeticP","doc:\/\/BigInt\/Sz","doc:\/\/BigInt\/SL","doc:\/\/BigInt\/s8CopyableP","doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","doc:\/\/BigInt\/s23CustomStringConvertibleP","doc:\/\/BigInt\/Se","doc:\/\/BigInt\/SE","doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","doc:\/\/BigInt\/SH","doc:\/\/BigInt\/Sj","doc:\/\/BigInt\/Sx","doc:\/\/BigInt\/SU"],"type":"conformsTo"}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Structure","navigatorTitle":[{"kind":"identifier","text":"BigUInt"}],"title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"externalID":"s:6BigInt0A4UIntV","symbolKind":"struct","role":"symbol"},"topicSections":[{"anchor":"Initializers","title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61"],"generated":true},{"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount"],"generated":true,"anchor":"Instance-Properties"},{"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)"],"generated":true,"anchor":"Instance-Methods"},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)"],"title":"Subscripts","anchor":"Subscripts"},{"anchor":"Type-Aliases","title":"Type Aliases","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"]},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit"],"title":"Type Properties","anchor":"Type-Properties","generated":true},{"generated":true,"title":"Type Methods","anchor":"Type-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)"]},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"],"title":"Default Implementations","anchor":"Default-Implementations"}],"abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"references":{"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","title":"multiplicative inverse of this integer in modulo modulus arithmetic","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","titleInlineContent":[{"type":"text","text":"multiplicative inverse of this integer in modulo "},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" arithmetic"}]},"doc://BigInt/documentation/BigInt/BigUInt/isZero":{"role":"symbol","abstract":[{"type":"text","text":"Return true iff this integer is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","kind":"symbol","title":"isZero","type":"topic","url":"\/documentation\/bigint\/biguint\/iszero","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isZero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/serialize()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/serialize()","type":"topic","abstract":[{"type":"text","text":"Return a "},{"code":"Data","type":"codeVoice"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"title":"serialize()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"}]},"doc://BigInt/documentation/BigInt/BigUInt/CustomStringConvertible-Implementations":{"url":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","type":"topic","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","title":"CustomStringConvertible Implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:)":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"title":"randomInteger(withMaximumWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"code":"width","type":"codeVoice"},{"type":"text","text":" uniformly distributed random bits."}]},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(by:)":{"role":"symbol","abstract":[{"type":"text","text":"Multiply this integer by "},{"type":"codeVoice","code":"y"},{"text":" and return the result.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","kind":"symbol","title":"multiplied(by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/multiplied(by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiplied"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/s43ExpressibleByExtendedGraphemeClusterLiteralP":{"title":"Swift.ExpressibleByExtendedGraphemeClusterLiteral","type":"unresolvable","identifier":"doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","kind":"symbol","title":"randomInteger(lessThan:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"kind":"externalParam","text":"lessThan"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","abstract":[],"title":"UnsignedInteger Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","type":"topic","role":"collectionGroup","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/power(_:)":{"url":"\/documentation\/bigint\/biguint\/power(_:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","title":"power(_:)","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations"},"doc://BigInt/Sx":{"title":"Swift.Strideable","type":"unresolvable","identifier":"doc:\/\/BigInt\/Sx"},"doc://BigInt/SL":{"title":"Swift.Comparable","type":"unresolvable","identifier":"doc:\/\/BigInt\/SL"},"doc://BigInt/SU":{"title":"Swift.UnsignedInteger","type":"unresolvable","identifier":"doc:\/\/BigInt\/SU"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-33w61":{"role":"symbol","abstract":[{"text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61","kind":"symbol","title":"init(words:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(words:)-33w61","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"words","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"kind":"text","text":"])"}]},"doc://BigInt/documentation/BigInt/BigUInt/init()-sbkm":{"url":"\/documentation\/bigint\/biguint\/init()-sbkm","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","title":"init()","abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}]},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","kind":"article","title":"Equatable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/equatable-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByIntegerLiteral-Implementations":{"kind":"article","url":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","type":"topic","role":"collectionGroup","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/decrement(shiftedBy:)":{"url":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"decrement"},{"kind":"text","text":"("},{"text":"shiftedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","title":"decrement(shiftedBy:)","abstract":[{"type":"text","text":"Decrement this integer by one."}]},"doc://BigInt/documentation/BigInt/BigUInt/CustomPlaygroundDisplayConvertible-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","kind":"article","title":"CustomPlaygroundDisplayConvertible Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/directMultiplicationLimit":{"url":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"directMultiplicationLimit"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit","title":"directMultiplicationLimit","abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}]},"doc://BigInt/documentation/BigInt/BigUInt/Hashable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","kind":"article","title":"Hashable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/hashable-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/inverse(_:)":{"title":"inverse(_:)","kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/inverse(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the "},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},{"text":",","type":"text"},{"text":" ","type":"text"},{"text":"or ","type":"text"},{"code":"nil","type":"codeVoice"},{"type":"text","text":" if there is no such number."}]},"doc://BigInt/documentation/BigInt/BigUInt/isStrongProbablePrime(_:)":{"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","isActive":true,"type":"reference"},{"text":" for the specified base.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","role":"symbol","type":"topic","title":"isStrongProbablePrime(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)"},"doc://BigInt/s18AdditiveArithmeticP":{"type":"unresolvable","title":"Swift.AdditiveArithmetic","identifier":"doc:\/\/BigInt\/s18AdditiveArithmeticP"},"doc://BigInt/s23CustomStringConvertibleP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible"},"doc://BigInt/SQ":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SQ","title":"Swift.Equatable"},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","kind":"article","title":"Strideable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/strideable-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/multiplyAndAdd(_:_:shiftedBy:)":{"url":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiplyAndAdd"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","title":"multiplyAndAdd(_:_:shiftedBy:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":", and add the result to this integer, optionally shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"type":"text","text":" words to the left."}]},"doc://BigInt/Se":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/Se","title":"Swift.Decodable"},"doc://BigInt/s33ExpressibleByUnicodeScalarLiteralP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","title":"Swift.ExpressibleByUnicodeScalarLiteral"},"doc://BigInt/documentation/BigInt/BigUInt/Decodable-Implementations":{"role":"collectionGroup","type":"topic","title":"Decodable Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/decodable-implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width-1"},{"text":" uniformly distributed random bits followed by a one bit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","kind":"symbol","title":"randomInteger(withExactWidth:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withExactWidth"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/multiply(byWord:)":{"url":"\/documentation\/bigint\/biguint\/multiply(byword:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiply"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","title":"multiply(byWord:)","abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}]},"doc://BigInt/documentation/BigInt/BigUInt/subtracting(_:shiftedBy:)":{"role":"symbol","abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"type":"text","text":" from this integer, and return the difference."},{"type":"text","text":" "},{"type":"codeVoice","code":"b"},{"text":" is shifted ","type":"text"},{"code":"shift","type":"codeVoice"},{"text":" digits to the left before being subtracted.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","kind":"symbol","title":"subtracting(_:shiftedBy:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"subtracting","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt/BigUInt/isPrime(rounds:)":{"url":"\/documentation\/bigint\/biguint\/isprime(rounds:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","title":"isPrime(rounds:)","abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}]},"doc://BigInt/documentation/BigInt/BigUInt/Encodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","url":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"},"https://en.wikipedia.org/wiki/Probable_prime":{"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","title":"strong probable prime test","titleInlineContent":[{"text":"strong probable prime test","type":"text"}],"type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/s8CopyableP":{"identifier":"doc:\/\/BigInt\/s8CopyableP","title":"Swift.Copyable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/leadingZeroBitCount":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"leadingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"type":"topic","kind":"symbol","role":"symbol","title":"leadingZeroBitCount","url":"\/documentation\/bigint\/biguint\/leadingzerobitcount","abstract":[{"text":"The number of leading zero bits in the binary representation of this integer in base ","type":"text"},{"code":"2^(Word.bitWidth)","type":"codeVoice"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"This is useful when you need to normalize a ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"text":" such that the top bit of its most significant word is 1.","type":"text"}]},"doc://BigInt/s27ExpressibleByIntegerLiteralP":{"identifier":"doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","title":"Swift.ExpressibleByIntegerLiteral","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/compare(_:_:)":{"kind":"symbol","title":"compare(_:_:)","abstract":[{"text":"Compare ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" to "},{"type":"codeVoice","code":"b"},{"text":" and return an ","type":"text"},{"code":"NSComparisonResult","type":"codeVoice"},{"text":" indicating their order.","type":"text"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"ComparisonResult","kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/compare(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup","type":"topic","kind":"article"},"doc://BigInt/s26ExpressibleByStringLiteralP":{"identifier":"doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","title":"Swift.ExpressibleByStringLiteral","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:using:)":{"title":"randomInteger(withMaximumWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"kind":"externalParam","text":"withMaximumWidth"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"type":"text","text":" uniformly distributed random bits."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(byWord:)":{"role":"symbol","abstract":[{"type":"text","text":"Multiply this big integer by a single Word, and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","kind":"symbol","title":"multiplied(byWord:)","type":"topic","url":"\/documentation\/bigint\/biguint\/multiplied(byword:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt/BigUInt/squareRoot()":{"title":"squareRoot()","url":"\/documentation\/bigint\/biguint\/squareroot()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"type":"codeVoice","code":"value"},{"type":"text","text":"."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/Sj":{"type":"unresolvable","title":"Swift.Numeric","identifier":"doc:\/\/BigInt\/Sj"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:)":{"title":"subtractingReportingOverflow(_:)","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtractingReportingOverflow"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", overflow"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Subtracts "},{"type":"codeVoice","code":"other"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":", returning the result and a flag indicating arithmetic overflow."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/subscript(bitAt:)":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)","kind":"symbol","title":"subscript(bitAt:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subscript(bitat:)","fragments":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"bitAt","kind":"externalParam"},{"kind":"text","text":" _: "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/subtractReportingOverflow(_:shiftedBy:)":{"title":"subtractReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractReportingOverflow"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place, and return a flag indicating if the operation caused an"},{"type":"text","text":" "},{"text":"arithmetic overflow. ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" is shifted "},{"code":"shift","type":"codeVoice"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-33kch":{"abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer","type":"text"}],"title":"init(_:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-33kch","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Numeric-Implementations":{"role":"collectionGroup","kind":"article","type":"topic","url":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-4ohlu":{"role":"symbol","abstract":[{"text":"Initializes an integer from the bits stored inside a piece of ","type":"text"},{"code":"Data","type":"codeVoice"},{"type":"text","text":"."},{"text":" ","type":"text"},{"text":"The data is assumed to be in network (big-endian) byte order.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","kind":"symbol","title":"init(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByStringLiteral-Implementations":{"title":"ExpressibleByStringLiteral Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","abstract":[],"kind":"article","role":"collectionGroup","type":"topic"},"doc://BigInt/SE":{"identifier":"doc:\/\/BigInt\/SE","type":"unresolvable","title":"Swift.Encodable"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/SH":{"identifier":"doc:\/\/BigInt\/SH","type":"unresolvable","title":"Swift.Hashable"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/s34CustomPlaygroundDisplayConvertibleP":{"identifier":"doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","type":"unresolvable","title":"Swift.CustomPlaygroundDisplayConvertible"},"doc://BigInt/documentation/BigInt/BigUInt/greatestCommonDivisor(with:)":{"title":"greatestCommonDivisor(with:)","url":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"greatestCommonDivisor"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:shiftedBy:)":{"role":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer, returning the difference and a flag indicating arithmetic overflow."},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)","kind":"symbol","title":"subtractingReportingOverflow(_:shiftedBy:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractingReportingOverflow"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/Sz":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/Sz","title":"Swift.BinaryInteger"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","role":"symbol","title":"randomInteger(withExactWidth:using:)","type":"topic","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"<"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","kind":"article","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:radix:)":{"title":"init(_:radix:)","url":"\/documentation\/bigint\/biguint\/init(_:radix:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"code":"9","type":"codeVoice"},{"text":" are represented by","type":"text"},{"type":"text","text":" "},{"type":"text","text":"letters from the English alphabet."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-2g41y":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/init(words:)-2g41y","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Words","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"words"},{"text":": ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","role":"symbol","title":"init(words:)"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:using:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","kind":"symbol","title":"randomInteger(lessThan:using:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/subtract(_:shiftedBy:)":{"title":"subtract(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtract","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place."},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/power(_:modulus:)":{"role":"symbol","abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"code":"modulus","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","kind":"symbol","title":"power(_:modulus:)","type":"topic","url":"\/documentation\/bigint\/biguint\/power(_:modulus:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint"],"traits":[{"interfaceLanguage":"swift"}]}],"relationshipsSections":[{"identifiers":["doc:\/\/BigInt\/s18AdditiveArithmeticP","doc:\/\/BigInt\/Sz","doc:\/\/BigInt\/SL","doc:\/\/BigInt\/s8CopyableP","doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","doc:\/\/BigInt\/s23CustomStringConvertibleP","doc:\/\/BigInt\/Se","doc:\/\/BigInt\/SE","doc:\/\/BigInt\/SQ","doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","doc:\/\/BigInt\/SH","doc:\/\/BigInt\/Sj","doc:\/\/BigInt\/s8SendableP","doc:\/\/BigInt\/Sx","doc:\/\/BigInt\/SU"],"kind":"relationships","type":"conformsTo","title":"Conforms To"}],"metadata":{"symbolKind":"struct","modules":[{"name":"BigInt"}],"title":"BigUInt","roleHeading":"Structure","navigatorTitle":[{"kind":"identifier","text":"BigUInt"}],"fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV"},"topicSections":[{"generated":true,"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61"],"anchor":"Initializers"},{"title":"Instance Properties","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount"],"anchor":"Instance-Properties"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)"],"title":"Instance Methods","generated":true,"anchor":"Instance-Methods"},{"anchor":"Subscripts","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)"],"title":"Subscripts"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"],"title":"Type Aliases","anchor":"Type-Aliases","generated":true},{"title":"Type Properties","generated":true,"anchor":"Type-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit"]},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)"],"anchor":"Type-Methods","title":"Type Methods","generated":true},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"],"title":"Default Implementations","anchor":"Default-Implementations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"kind":"identifier","text":"BigUInt"}],"platforms":["macOS"]}]},{"content":[{"text":"Overview","anchor":"overview","type":"heading","level":2},{"type":"paragraph","inlineContent":[{"text":"Operations on big integers never overflow, but they may take a long time to execute.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The amount of memory (and address space) available is the only constraint to the magnitude of these numbers."}]},{"type":"paragraph","inlineContent":[{"text":"This particular big integer type uses base-2^64 digits to represent integers; you can think of it as a wrapper","type":"text"},{"type":"text","text":" "},{"text":"around ","type":"text"},{"type":"codeVoice","code":"Array"},{"type":"text","text":". (In fact, "},{"type":"codeVoice","code":"BigUInt"},{"text":" only uses an array if there are more than two digits.)","type":"text"}]}],"kind":"content"}],"references":{"doc://BigInt/SH":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SH","title":"Swift.Hashable"},"doc://BigInt/documentation/BigInt/BigUInt/subtract(_:shiftedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtract"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place."},{"text":" ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","type":"topic","title":"subtract(_:shiftedBy:)"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-33w61":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61","url":"\/documentation\/bigint\/biguint\/init(words:)-33w61","abstract":[{"type":"text","text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant."}],"title":"init(words:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"words"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":"])","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:)":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withMaximumWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","role":"symbol","title":"randomInteger(withMaximumWidth:)","type":"topic","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"text":" uniformly distributed random bits.","type":"text"}]},"doc://BigInt/s8CopyableP":{"identifier":"doc:\/\/BigInt\/s8CopyableP","title":"Swift.Copyable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/Hashable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","url":"\/documentation\/bigint\/biguint\/hashable-implementations","role":"collectionGroup","title":"Hashable Implementations","type":"topic","abstract":[]},"doc://BigInt/SL":{"identifier":"doc:\/\/BigInt\/SL","title":"Swift.Comparable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-33kch":{"kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","url":"\/documentation\/bigint\/biguint\/init(_:)-33kch","role":"symbol","title":"init(_:)","type":"topic","abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/serialize()":{"url":"\/documentation\/bigint\/biguint\/serialize()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","abstract":[{"text":"Return a ","type":"text"},{"type":"codeVoice","code":"Data"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"title":"serialize()","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"}]},"https://en.wikipedia.org/wiki/Probable_prime":{"titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","type":"link","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","title":"strong probable prime test"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:radix:)":{"url":"\/documentation\/bigint\/biguint\/init(_:radix:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"type":"text","text":" "},{"text":"letters from the English alphabet.","type":"text"}],"title":"init(_:radix:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/power(_:modulus:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","url":"\/documentation\/bigint\/biguint\/power(_:modulus:)","role":"symbol","title":"power(_:modulus:)","type":"topic","abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"type":"codeVoice","code":"modulus"},{"text":".","type":"text"}]},"doc://BigInt/s26ExpressibleByStringLiteralP":{"title":"Swift.ExpressibleByStringLiteral","identifier":"doc:\/\/BigInt\/s26ExpressibleByStringLiteralP","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/subscript(bitAt:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"bitAt","kind":"externalParam"},{"text":" _: ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)","url":"\/documentation\/bigint\/biguint\/subscript(bitat:)","role":"symbol","title":"subscript(bitAt:)","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"title":"Strideable Implementations","role":"collectionGroup","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","url":"\/documentation\/bigint\/biguint\/strideable-implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"withExactWidth"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic","title":"randomInteger(withExactWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"code":"width-1","type":"codeVoice"},{"text":" uniformly distributed random bits followed by a one bit.","type":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(byWord:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","url":"\/documentation\/bigint\/biguint\/multiplied(byword:)","abstract":[{"type":"text","text":"Multiply this big integer by a single Word, and return the result."}],"title":"multiplied(byWord:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multiplied","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByStringLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","role":"collectionGroup","title":"ExpressibleByStringLiteral Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"title":"randomInteger(lessThan:using:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"<"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/isPrime(rounds:)":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rounds"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","url":"\/documentation\/bigint\/biguint\/isprime(rounds:)","role":"symbol","title":"isPrime(rounds:)","type":"topic","abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}]},"doc://BigInt/SU":{"identifier":"doc:\/\/BigInt\/SU","title":"Swift.UnsignedInteger","type":"unresolvable"},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","title":"multiplicative inverse of this integer in modulo modulus arithmetic","titleInlineContent":[{"text":"multiplicative inverse of this integer in modulo ","type":"text"},{"type":"codeVoice","code":"modulus"},{"text":" arithmetic","type":"text"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","type":"link"},"doc://BigInt/s34CustomPlaygroundDisplayConvertibleP":{"identifier":"doc:\/\/BigInt\/s34CustomPlaygroundDisplayConvertibleP","title":"Swift.CustomPlaygroundDisplayConvertible","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations","role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/leadingZeroBitCount":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","url":"\/documentation\/bigint\/biguint\/leadingzerobitcount","abstract":[{"text":"The number of leading zero bits in the binary representation of this integer in base ","type":"text"},{"type":"codeVoice","code":"2^(Word.bitWidth)"},{"text":".","type":"text"},{"text":" ","type":"text"},{"text":"This is useful when you need to normalize a ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":" such that the top bit of its most significant word is 1."}],"title":"leadingZeroBitCount","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"leadingZeroBitCount","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:using:)":{"title":"randomInteger(withMaximumWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width"},{"type":"text","text":" uniformly distributed random bits."}],"role":"symbol","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"text":">(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"doc://BigInt/s8SendableP":{"type":"unresolvable","title":"Swift.Sendable","identifier":"doc:\/\/BigInt\/s8SendableP"},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:shiftedBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","abstract":[{"type":"text","text":"Subtract "},{"code":"other","type":"codeVoice"},{"text":" from this integer, returning the difference and a flag indicating arithmetic overflow.","type":"text"},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"title":"subtractingReportingOverflow(_:shiftedBy:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}]},"doc://BigInt/Sx":{"identifier":"doc:\/\/BigInt\/Sx","title":"Swift.Strideable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-4ohlu":{"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"The data is assumed to be in network (big-endian) byte order.","type":"text"}],"title":"init(_:)","url":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":")"}],"type":"topic","role":"symbol"},"doc://BigInt/s23CustomStringConvertibleP":{"identifier":"doc:\/\/BigInt\/s23CustomStringConvertibleP","title":"Swift.CustomStringConvertible","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/subtractReportingOverflow(_:shiftedBy:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtractReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","role":"symbol","title":"subtractReportingOverflow(_:shiftedBy:)","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"text":" from this integer in place, and return a flag indicating if the operation caused an","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"arithmetic overflow. "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}]},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations","kind":"article","role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"title":"randomInteger(withExactWidth:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"text":"withExactWidth","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/subtracting(_:shiftedBy:)":{"role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtracting"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"title":"subtracting(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" from this integer, and return the difference.","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"b"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}]},"doc://BigInt/SQ":{"identifier":"doc:\/\/BigInt\/SQ","title":"Swift.Equatable","type":"unresolvable"},"doc://BigInt/Se":{"identifier":"doc:\/\/BigInt\/Se","title":"Swift.Decodable","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/decrement(shiftedBy:)":{"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"decrement"},{"text":"(","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"decrement(shiftedBy:)","url":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","role":"symbol","abstract":[{"type":"text","text":"Decrement this integer by one."}]},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-2g41y":{"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","role":"symbol","title":"init(words:)","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"Words","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(words:)-2g41y"},"doc://BigInt/documentation/BigInt/BigUInt/Decodable-Implementations":{"kind":"article","role":"collectionGroup","title":"Decodable Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/decodable-implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","url":"\/documentation\/bigint\/biguint\/equatable-implementations","role":"collectionGroup","title":"Equatable Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","abstract":[{"text":"Subtracts ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"self"},{"type":"text","text":", returning the result and a flag indicating arithmetic overflow."}],"url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","title":"subtractingReportingOverflow(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtractingReportingOverflow"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", overflow"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}]},"doc://BigInt/s43ExpressibleByExtendedGraphemeClusterLiteralP":{"identifier":"doc:\/\/BigInt\/s43ExpressibleByExtendedGraphemeClusterLiteralP","title":"Swift.ExpressibleByExtendedGraphemeClusterLiteral","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/compare(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)","abstract":[{"text":"Compare ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return an "},{"type":"codeVoice","code":"NSComparisonResult"},{"text":" indicating their order.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/compare(_:_:)","title":"compare(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/multiplyAndAdd(_:_:shiftedBy:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","role":"symbol","title":"multiplyAndAdd(_:_:shiftedBy:)","type":"topic","abstract":[{"type":"text","text":"Multiply "},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":", and add the result to this integer, optionally shifted "},{"code":"shift","type":"codeVoice"},{"text":" words to the left.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/greatestCommonDivisor(with:)":{"role":"symbol","title":"greatestCommonDivisor(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","type":"topic","abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"code":"self","type":"codeVoice"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/isZero":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/iszero","title":"isZero","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/power(_:)":{"type":"topic","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/power(_:)","title":"power(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByIntegerLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","role":"collectionGroup","title":"ExpressibleByIntegerLiteral Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","role":"collectionGroup","title":"AdditiveArithmetic Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/CustomStringConvertible-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","url":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","role":"collectionGroup","title":"CustomStringConvertible Implementations","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Encodable-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/s33ExpressibleByUnicodeScalarLiteralP":{"identifier":"doc:\/\/BigInt\/s33ExpressibleByUnicodeScalarLiteralP","title":"Swift.ExpressibleByUnicodeScalarLiteral","type":"unresolvable"},"doc://BigInt/Sj":{"identifier":"doc:\/\/BigInt\/Sj","title":"Swift.Numeric","type":"unresolvable"},"doc://BigInt/s27ExpressibleByIntegerLiteralP":{"identifier":"doc:\/\/BigInt\/s27ExpressibleByIntegerLiteralP","title":"Swift.ExpressibleByIntegerLiteral","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/CustomPlaygroundDisplayConvertible-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","url":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations","role":"collectionGroup","title":"CustomPlaygroundDisplayConvertible Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Numeric-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","kind":"article","type":"topic","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:)":{"title":"randomInteger(lessThan:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"type":"topic","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/inverse(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","url":"\/documentation\/bigint\/biguint\/inverse(_:)","role":"symbol","title":"inverse(_:)","type":"topic","abstract":[{"text":"Returns the ","type":"text"},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true,"type":"reference"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"or "},{"code":"nil","type":"codeVoice"},{"type":"text","text":" if there is no such number."}]},"doc://BigInt/documentation/BigInt/BigUInt/directMultiplicationLimit":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit","abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}],"url":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","title":"directMultiplicationLimit","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"directMultiplicationLimit","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}]},"doc://BigInt/documentation/BigInt/BigUInt/isStrongProbablePrime(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isStrongProbablePrime","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)","url":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","role":"symbol","title":"isStrongProbablePrime(_:)","type":"topic","abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","isActive":true,"type":"reference"},{"text":" for the specified base.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(by:)":{"abstract":[{"type":"text","text":"Multiply this integer by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","kind":"symbol","title":"multiplied(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/multiplied(by:)","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init()-sbkm":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/init()-sbkm","title":"init()","abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}],"fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","type":"topic"},"doc://BigInt/Sz":{"identifier":"doc:\/\/BigInt\/Sz","title":"Swift.BinaryInteger","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","title":"UnsignedInteger Implementations","abstract":[],"type":"topic","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/squareRoot()":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","url":"\/documentation\/bigint\/biguint\/squareroot()","role":"symbol","title":"squareRoot()","type":"topic","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"code":"value","type":"codeVoice"},{"type":"text","text":"."}]},"doc://BigInt/s18AdditiveArithmeticP":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/s18AdditiveArithmeticP","title":"Swift.AdditiveArithmetic"},"doc://BigInt/SE":{"type":"unresolvable","identifier":"doc:\/\/BigInt\/SE","title":"Swift.Encodable"},"doc://BigInt/documentation/BigInt/BigUInt/multiply(byWord:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}],"url":"\/documentation\/bigint\/biguint\/multiply(byword:)","title":"multiply(byWord:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multiply","kind":"identifier"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/!=(_:_:)-109o9.json b/docs/data/documentation/bigint/biguint/!=(_:_:)-109o9.json index 8d9d563..7df60c9 100644 --- a/docs/data/documentation/bigint/biguint/!=(_:_:)-109o9.json +++ b/docs/data/documentation/bigint/biguint/!=(_:_:)-109o9.json @@ -1 +1 @@ -{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.!=(_:_:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","interfaceLanguage":"swift"},"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:SzsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":"!=(_:_:)","roleHeading":"Operator","extendedModule":"Swift","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"languages":["swift"]}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-109o9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","role":"symbol","title":"!=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.!=(_:_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"symbolKind":"op","title":"!=(_:_:)","role":"symbol","externalID":"s:SzsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Operator","extendedModule":"Swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-109o9":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"!=(_:_:)","kind":"symbol","role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/!=(_:_:)-7s9hj.json b/docs/data/documentation/bigint/biguint/!=(_:_:)-7s9hj.json index cb3606b..fba62e0 100644 --- a/docs/data/documentation/bigint/biguint/!=(_:_:)-7s9hj.json +++ b/docs/data/documentation/bigint/biguint/!=(_:_:)-7s9hj.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj"},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","extendedModule":"Swift","symbolKind":"op","title":"!=(_:_:)","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SzsE2neoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.!=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-7s9hj":{"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"!=(_:_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","title":"!=(_:_:)","roleHeading":"Operator","symbolKind":"op","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SzsE2neoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.!=(_:_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-7s9hj":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"!=(_:_:)","role":"symbol","kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/!=(_:_:)-8cdci.json b/docs/data/documentation/bigint/biguint/!=(_:_:)-8cdci.json index 5dbef07..9afa15d 100644 --- a/docs/data/documentation/bigint/biguint/!=(_:_:)-8cdci.json +++ b/docs/data/documentation/bigint/biguint/!=(_:_:)-8cdci.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"metadata":{"roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"!=(_:_:)","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Equatable.!=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-8cdci":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","abstract":[],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","kind":"article","title":"Equatable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/equatable-implementations"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Equatable.!=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"extendedModule":"Swift","roleHeading":"Operator","title":"!=(_:_:)","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SQsE2neoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-8cdci":{"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","title":"!=(_:_:)","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"type":"topic","kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","url":"\/documentation\/bigint\/biguint\/equatable-implementations","role":"collectionGroup","title":"Equatable Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/&(_:_:).json b/docs/data/documentation/bigint/biguint/&(_:_:).json index fff4334..c991e43 100644 --- a/docs/data/documentation/bigint/biguint/&(_:_:).json +++ b/docs/data/documentation/bigint/biguint/&(_:_:).json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/&(_:_:)"]}],"metadata":{"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:SzsE1aoiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":"&(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","roleHeading":"Operator","role":"symbol"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.&(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/&(_:_:)":{"abstract":[],"type":"topic","kind":"symbol","title":"&(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)","url":"\/documentation\/bigint\/biguint\/&(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/&(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.&(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"roleHeading":"Operator","role":"symbol","extendedModule":"Swift","externalID":"s:SzsE1aoiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","title":"&(_:_:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/&(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/&(_:_:)","kind":"symbol","abstract":[],"role":"symbol","type":"topic","title":"&(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/&=(_:_:).json b/docs/data/documentation/bigint/biguint/&=(_:_:).json index e4af093..d5d9e93 100644 --- a/docs/data/documentation/bigint/biguint/&=(_:_:).json +++ b/docs/data/documentation/bigint/biguint/&=(_:_:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Calculate the bitwise AND of "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"O(max(a.count, b.count))","type":"text"}]}],"name":"Complexity","style":"note"}]}],"kind":"symbol","sections":[],"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","symbolKind":"op","title":"&=(_:_:)","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV2aeoiyyACz_ACtFZ"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/&=(_:_:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/&=(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","type":"topic","abstract":[{"text":"Calculate the bitwise AND of ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"title":"&=(_:_:)","url":"\/documentation\/bigint\/biguint\/&=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"kind":"symbol"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","interfaceLanguage":"swift"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/&=(_:_:)"]}],"metadata":{"symbolKind":"op","modules":[{"name":"BigInt"}],"title":"&=(_:_:)","extendedModule":"BigInt","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV2aeoiyyACz_ACtFZ"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Calculate the bitwise AND of "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"name":"Complexity","type":"aside","style":"note","content":[{"inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}],"type":"paragraph"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/&=(_:_:)":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","url":"\/documentation\/bigint\/biguint\/&=(_:_:)","role":"symbol","title":"&=(_:_:)","type":"topic","abstract":[{"text":"Calculate the bitwise AND of ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/'...(_:)-993l9.json b/docs/data/documentation/bigint/biguint/'...(_:)-993l9.json index 1bbeabb..56635de 100644 --- a/docs/data/documentation/bigint/biguint/'...(_:)-993l9.json +++ b/docs/data/documentation/bigint/biguint/'...(_:)-993l9.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable....(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9"},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"externalID":"s:SLsE3zzzoPys16PartialRangeFromVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"...(_:)","roleHeading":"Operator","extendedModule":"Swift","symbolKind":"op"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"minimum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/'...(_:)-993l9"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-993l9":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","url":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","title":"...(_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/'...(_:)-993l9"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable....(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9"},"metadata":{"title":"...(_:)","roleHeading":"Operator","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","externalID":"s:SLsE3zzzoPys16PartialRangeFromVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"minimum"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV","text":"PartialRangeFrom"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-993l9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","kind":"symbol","abstract":[],"title":"...(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/'...(_:)-jf8p.json b/docs/data/documentation/bigint/biguint/'...(_:)-jf8p.json index 6539538..432cd8d 100644 --- a/docs/data/documentation/bigint/biguint/'...(_:)-jf8p.json +++ b/docs/data/documentation/bigint/biguint/'...(_:)-jf8p.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s19PartialRangeThroughV","kind":"typeIdentifier","text":"PartialRangeThrough"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/'...(_:)-jf8p"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p"},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable....(_:)"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","roleHeading":"Operator","symbolKind":"op","externalID":"s:SLsE3zzzopys19PartialRangeThroughVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s19PartialRangeThroughV","text":"PartialRangeThrough","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"extendedModule":"Swift","title":"...(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-jf8p":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","kind":"typeIdentifier","preciseIdentifier":"s:s19PartialRangeThroughV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","title":"...(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","abstract":[],"role":"symbol"}}} \ No newline at end of file +{"metadata":{"externalID":"s:SLsE3zzzopys19PartialRangeThroughVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","preciseIdentifier":"s:s19PartialRangeThroughV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"roleHeading":"Operator","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","symbolKind":"op","title":"...(_:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/'...(_:)-jf8p"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable....(_:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"maximum","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"PartialRangeThrough","kind":"typeIdentifier","preciseIdentifier":"s:s19PartialRangeThroughV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-jf8p":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s19PartialRangeThroughV","text":"PartialRangeThrough","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"...(_:)","type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/'...(_:_:).json b/docs/data/documentation/bigint/biguint/'...(_:_:).json index 04e049b..d723d89 100644 --- a/docs/data/documentation/bigint/biguint/'...(_:_:).json +++ b/docs/data/documentation/bigint/biguint/'...(_:_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"minimum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","kind":"typeIdentifier","text":"ClosedRange"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/'...(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","interfaceLanguage":"swift"},"metadata":{"title":"...(_:_:)","externalID":"s:SLsE3zzzoiySNyxGx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","kind":"typeIdentifier","text":"ClosedRange"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"op"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable....(_:_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:_:)":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"title":"...(_:_:)","url":"\/documentation\/bigint\/biguint\/'...(_:_:)","role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"minimum"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"maximum"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:SN","kind":"typeIdentifier","text":"ClosedRange"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable....(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"roleHeading":"Operator","extendedModule":"Swift","title":"...(_:_:)","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:SN","text":"ClosedRange"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","externalID":"s:SLsE3zzzoiySNyxGx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/'...(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:_:)":{"title":"...(_:_:)","url":"\/documentation\/bigint\/biguint\/'...(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/'.._(_:).json b/docs/data/documentation/bigint/biguint/'.._(_:).json index 486273c..b7011f2 100644 --- a/docs/data/documentation/bigint/biguint/'.._(_:).json +++ b/docs/data/documentation/bigint/biguint/'.._(_:).json @@ -1 +1 @@ -{"metadata":{"externalID":"s:SLsE3zzlopys16PartialRangeUpToVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","title":"..<(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV","text":"PartialRangeUpTo"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable...<(_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/'.._(_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"maximum","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"PartialRangeUpTo","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","kind":"symbol","type":"topic","title":"..<(_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable...<(_:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/'.._(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"maximum","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"externalID":"s:SLsE3zzlopys16PartialRangeUpToVyxGxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","title":"..<(_:)","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeUpTo","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","roleHeading":"Operator"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:)":{"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s16PartialRangeUpToV","text":"PartialRangeUpTo","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"..<(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/'.._(_:_:).json b/docs/data/documentation/bigint/biguint/'.._(_:_:).json index 28f7ef6..f2cf1e6 100644 --- a/docs/data/documentation/bigint/biguint/'.._(_:_:).json +++ b/docs/data/documentation/bigint/biguint/'.._(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/'.._(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable...<(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"minimum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"maximum"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}]}]}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Operator","title":"..<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"externalID":"s:SLsE3zzloiySnyxGx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","kind":"symbol","type":"topic","title":"..<(_:_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"metadata":{"extendedModule":"Swift","roleHeading":"Operator","externalID":"s:SLsE3zzloiySnyxGx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"..<(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"minimum","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"maximum","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable...<(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/'.._(_:_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:_:)":{"title":"..<(_:_:)","url":"\/documentation\/bigint\/biguint\/'.._(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/*(_:_:).json b/docs/data/documentation/bigint/biguint/*(_:_:).json index 062c68e..6c8bbc9 100644 --- a/docs/data/documentation/bigint/biguint/*(_:_:).json +++ b/docs/data/documentation/bigint/biguint/*(_:_:).json @@ -1 +1 @@ -{"metadata":{"roleHeading":"Operator","externalID":"s:6BigInt0A4UIntV1moiyA2C_ACtFZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"*","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"extendedModule":"BigInt","role":"symbol","title":"*(_:_:)","symbolKind":"op","modules":[{"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/*(_:_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"}],"languages":["swift"]}]},{"content":[{"level":2,"type":"heading","text":"Discussion","anchor":"discussion"},{"style":"note","type":"aside","name":"Note","content":[{"inlineContent":[{"text":"This uses the naive O(n^2) multiplication algorithm unless both arguments have more than","type":"text"},{"text":" ","type":"text"},{"type":"codeVoice","code":"BigUInt.directMultiplicationLimit"},{"type":"text","text":" words."}],"type":"paragraph"}]},{"style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"text":"O(n^log2(3))","type":"text"}]}],"type":"aside"}],"kind":"content"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)"},"abstract":[{"text":"Multiply ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/*(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","role":"symbol","title":"*(_:_:)","type":"topic","abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the result."}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"*","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/*(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/*(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"metadata":{"externalID":"s:6BigInt0A4UIntV1moiyA2C_ACtFZ","title":"*(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Operator","symbolKind":"op"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)"},"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"This uses the naive O(n^2) multiplication algorithm unless both arguments have more than","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"BigUInt.directMultiplicationLimit"},{"type":"text","text":" words."}]}],"name":"Note"},{"name":"Complexity","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(n^log2(3))"}]}],"style":"note"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/*(_:_:)":{"title":"*(_:_:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"url":"\/documentation\/bigint\/biguint\/*(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/*=(_:_:).json b/docs/data/documentation/bigint/biguint/*=(_:_:).json index d37518c..a5334aa 100644 --- a/docs/data/documentation/bigint/biguint/*=(_:_:).json +++ b/docs/data/documentation/bigint/biguint/*=(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/*=(_:_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV2meoiyyACz_ACtFZ","extendedModule":"BigInt","title":"*=(_:_:)","role":"symbol","roleHeading":"Operator","symbolKind":"op"},"abstract":[{"text":"Multiply ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"text":" and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/*=(_:_:)":{"abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and store the result in "},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","kind":"symbol","title":"*=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","url":"\/documentation\/bigint\/biguint\/*=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/*=(_:_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV2meoiyyACz_ACtFZ","title":"*=(_:_:)","modules":[{"name":"BigInt"}],"symbolKind":"op","roleHeading":"Operator"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/*=(_:_:)":{"role":"symbol","title":"*=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/*=(_:_:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and store the result in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/+(_:).json b/docs/data/documentation/bigint/biguint/+(_:).json index 8ff05db..83190ce 100644 --- a/docs/data/documentation/bigint/biguint/+(_:).json +++ b/docs/data/documentation/bigint/biguint/+(_:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"externalID":"s:s18AdditiveArithmeticPsE1popyxxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Operator","title":"+(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/+(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AdditiveArithmetic.+(_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup","type":"topic","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/+(_:)":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"+(_:)","url":"\/documentation\/bigint\/biguint\/+(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"role":"symbol","externalID":"s:s18AdditiveArithmeticPsE1popyxxFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":"+(_:)","symbolKind":"op","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"extendedModule":"Swift"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"AdditiveArithmetic.+(_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+(_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","role":"collectionGroup","title":"AdditiveArithmetic Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/+(_:)":{"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/+(_:)","kind":"symbol","title":"+(_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/+(_:_:).json b/docs/data/documentation/bigint/biguint/+(_:_:).json index 3ae7c92..46cbff9 100644 --- a/docs/data/documentation/bigint/biguint/+(_:_:).json +++ b/docs/data/documentation/bigint/biguint/+(_:_:).json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" together and return the result."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"name":"Complexity","type":"aside","style":"note","content":[{"inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}],"type":"paragraph"}]}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+(_:_:)"]}],"metadata":{"title":"+(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"externalID":"s:6BigInt0A4UIntV1poiyA2C_ACtFZ","extendedModule":"BigInt","roleHeading":"Operator","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/+(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" together and return the result.","type":"text"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/+(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"title":"+(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","interfaceLanguage":"swift"},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"symbolKind":"op","extendedModule":"BigInt","roleHeading":"Operator","title":"+(_:_:)","externalID":"s:6BigInt0A4UIntV1poiyA2C_ACtFZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"role":"symbol"},"abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" together and return the result."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"anchor":"discussion","type":"heading"},{"type":"aside","content":[{"inlineContent":[{"text":"O(max(a.count, b.count))","type":"text"}],"type":"paragraph"}],"name":"Complexity","style":"note"}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+(_:_:)"]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/+(_:_:)":{"title":"+(_:_:)","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" together and return the result.","type":"text"}],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/+(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/+=(_:_:)-3dht1.json b/docs/data/documentation/bigint/biguint/+=(_:_:)-3dht1.json index 9cc84cb..945330b 100644 --- a/docs/data/documentation/bigint/biguint/+=(_:_:)-3dht1.json +++ b/docs/data/documentation/bigint/biguint/+=(_:_:)-3dht1.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1"]}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Operator","symbolKind":"op","extendedModule":"Swift","title":"+=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:s18AdditiveArithmeticPsE2peoiyyxz_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"AdditiveArithmetic.+=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup","type":"topic","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-3dht1":{"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"+=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"type":"topic"}}} \ No newline at end of file +{"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Operator","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"title":"+=(_:_:)","externalID":"s:s18AdditiveArithmeticPsE2peoiyyxz_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}]}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"AdditiveArithmetic.+=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","role":"collectionGroup","title":"AdditiveArithmetic Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-3dht1":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","abstract":[],"url":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"+=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/+=(_:_:)-7h5bi.json b/docs/data/documentation/bigint/biguint/+=(_:_:)-7h5bi.json index 706abf5..a7e7fcc 100644 --- a/docs/data/documentation/bigint/biguint/+=(_:_:)-7h5bi.json +++ b/docs/data/documentation/bigint/biguint/+=(_:_:)-7h5bi.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]}]},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"content":[{"type":"paragraph","inlineContent":[{"text":"O(max(a.count, b.count))","type":"text"}]}],"name":"Complexity","type":"aside","style":"note"}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" together, and store the sum in "},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Operator","symbolKind":"op","extendedModule":"BigInt","title":"+=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV2peoiyyACz_ACtFZ","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-7h5bi":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" together, and store the sum in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"title":"+=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}]}],"name":"Complexity","style":"note"}],"kind":"content"}],"abstract":[{"text":"Add ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" together, and store the sum in ","type":"text"},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"externalID":"s:6BigInt0A4UIntV2peoiyyACz_ACtFZ","roleHeading":"Operator","title":"+=(_:_:)","extendedModule":"BigInt","role":"symbol","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-7h5bi":{"title":"+=(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" together, and store the sum in ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/-(_:_:).json b/docs/data/documentation/bigint/biguint/-(_:_:).json index a21a6a2..689473f 100644 --- a/docs/data/documentation/bigint/biguint/-(_:_:).json +++ b/docs/data/documentation/bigint/biguint/-(_:_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"content":[{"type":"paragraph","inlineContent":[{"text":"A >= b","type":"text"}]}],"style":"note","type":"aside","name":"Requires"},{"type":"aside","style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(a.count)"}]}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"externalID":"s:6BigInt0A4UIntV1soiyA2C_ACtFZ","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Operator","symbolKind":"op","title":"-(_:_:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/-(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"type":"text","text":" from "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and return the result."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/-(_:_:)":{"url":"\/documentation\/bigint\/biguint\/-(_:_:)","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and return the result."}],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"title":"-(_:_:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/-(_:_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"type":"text","text":" from "},{"code":"a","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"-"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"externalID":"s:6BigInt0A4UIntV1soiyA2C_ACtFZ","symbolKind":"op","title":"-(_:_:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"style":"note","name":"Requires","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"A >= b","type":"text"}]}]},{"style":"note","name":"Complexity","type":"aside","content":[{"inlineContent":[{"text":"O(a.count)","type":"text"}],"type":"paragraph"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/-(_:_:)":{"url":"\/documentation\/bigint\/biguint\/-(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and return the result.","type":"text"}],"title":"-(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/-=(_:_:)-47mle.json b/docs/data/documentation/bigint/biguint/-=(_:_:)-47mle.json index 556b35e..50c8072 100644 --- a/docs/data/documentation/bigint/biguint/-=(_:_:)-47mle.json +++ b/docs/data/documentation/bigint/biguint/-=(_:_:)-47mle.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"AdditiveArithmetic.-=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/-=(_:_:)-47mle"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Operator","title":"-=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:s18AdditiveArithmeticPsE2seoiyyxz_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup","type":"topic","kind":"article"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-47mle":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","role":"symbol","title":"-=(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"languages":["swift"]}]}],"sections":[],"metadata":{"externalID":"s:s18AdditiveArithmeticPsE2seoiyyxz_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","title":"-=(_:_:)","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":")","kind":"text"}],"symbolKind":"op"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/-=(_:_:)-47mle"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"AdditiveArithmetic.-=(_:_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-47mle":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","kind":"symbol","title":"-=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","role":"collectionGroup","title":"AdditiveArithmetic Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/-=(_:_:)-7gkuo.json b/docs/data/documentation/bigint/biguint/-=(_:_:)-7gkuo.json index 794e815..ad1ec48 100644 --- a/docs/data/documentation/bigint/biguint/-=(_:_:)-7gkuo.json +++ b/docs/data/documentation/bigint/biguint/-=(_:_:)-7gkuo.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}]}],"kind":"declarations"},{"content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"style":"note","name":"Requires","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"A >= b"}]}]},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(a.count)"}]}],"name":"Complexity"}],"kind":"content"}],"abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and store the result in "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo"]}],"kind":"symbol","metadata":{"title":"-=(_:_:)","externalID":"s:6BigInt0A4UIntV2seoiyyACz_ACtFZ","extendedModule":"BigInt","role":"symbol","roleHeading":"Operator","symbolKind":"op","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo"},"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt","role":"collection","url":"\/documentation\/bigint","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-7gkuo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" and store the result in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"title":"-=(_:_:)","role":"symbol","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}]}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":")"}],"platforms":["macOS"]}]},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"type":"aside","style":"note","name":"Requires","content":[{"type":"paragraph","inlineContent":[{"text":"A >= b","type":"text"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(a.count)"}]}],"type":"aside","name":"Complexity","style":"note"}],"kind":"content"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo"]}],"metadata":{"modules":[{"name":"BigInt"}],"title":"-=(_:_:)","symbolKind":"op","extendedModule":"BigInt","role":"symbol","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"externalID":"s:6BigInt0A4UIntV2seoiyyACz_ACtFZ"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" from "},{"code":"a","type":"codeVoice"},{"type":"text","text":" and store the result in "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-7gkuo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","kind":"symbol","title":"-=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/==(_:_:)-1xms.json b/docs/data/documentation/bigint/biguint/==(_:_:)-1xms.json index 5c4a85e..b5597b9 100644 --- a/docs/data/documentation/bigint/biguint/==(_:_:)-1xms.json +++ b/docs/data/documentation/bigint/biguint/==(_:_:)-1xms.json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-1xms"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.==(_:_:)"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Operator","extendedModule":"Swift","externalID":"s:SzsE2eeoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"==(_:_:)","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-1xms":{"abstract":[],"type":"topic","title":"==(_:_:)","url":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}]}],"kind":"declarations"}],"metadata":{"symbolKind":"op","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"==(_:_:)","extendedModule":"Swift","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","externalID":"s:SzsE2eeoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-1xms"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.==(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-1xms":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","url":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","abstract":[],"title":"==(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/==(_:_:)-5amrc.json b/docs/data/documentation/bigint/biguint/==(_:_:)-5amrc.json index 162e70f..6c3dbe1 100644 --- a/docs/data/documentation/bigint/biguint/==(_:_:)-5amrc.json +++ b/docs/data/documentation/bigint/biguint/==(_:_:)-5amrc.json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Equatable.==(_:_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-5amrc"]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:SxsE2eeoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","title":"==(_:_:)","extendedModule":"Swift","roleHeading":"Operator","role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-5amrc":{"type":"topic","url":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"==(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc"},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","kind":"article","title":"Equatable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/equatable-implementations"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-5amrc"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Equatable.==(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc","interfaceLanguage":"swift"},"metadata":{"title":"==(_:_:)","roleHeading":"Operator","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","externalID":"s:SxsE2eeoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"x"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-5amrc":{"url":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","type":"topic","abstract":[],"title":"==(_:_:)","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc"},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","url":"\/documentation\/bigint\/biguint\/equatable-implementations","role":"collectionGroup","title":"Equatable Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/==(_:_:)-892yw.json b/docs/data/documentation/bigint/biguint/==(_:_:)-892yw.json index 271ae5f..2b00999 100644 --- a/docs/data/documentation/bigint/biguint/==(_:_:)-892yw.json +++ b/docs/data/documentation/bigint/biguint/==(_:_:)-892yw.json @@ -1 +1 @@ -{"abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is equal to "},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"metadata":{"title":"==(_:_:)","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:6BigInt0A4UIntV2eeoiySbAC_ACtFZ","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Operator"},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-892yw"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","kind":"article","title":"Equatable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/equatable-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-892yw":{"type":"topic","url":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"text":" is equal to ","type":"text"},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"==(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"externalID":"s:6BigInt0A4UIntV2eeoiySbAC_ACtFZ","extendedModule":"BigInt","title":"==(_:_:)","roleHeading":"Operator","modules":[{"name":"BigInt"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/==(_:_:)-892yw"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}],"type":"aside","name":"Complexity"}]}],"abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"text":" is equal to ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Equatable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","url":"\/documentation\/bigint\/biguint\/equatable-implementations","role":"collectionGroup","title":"Equatable Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-892yw":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw","title":"==(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"type":"text","text":" is equal to "},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-4zjdt.json b/docs/data/documentation/bigint/biguint/_(_:_:)-4zjdt.json index ec16162..69ead55 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-4zjdt.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-4zjdt.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.|(_:_:)"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"|(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","symbolKind":"op","externalID":"s:SzsE1ooiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-4zjdt":{"type":"topic","abstract":[],"role":"symbol","title":"|(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"|"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.|(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"title":"|(_:_:)","role":"symbol","roleHeading":"Operator","externalID":"s:SzsE1ooiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-4zjdt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt","kind":"symbol","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-55fb1.json b/docs/data/documentation/bigint/biguint/_(_:_:)-55fb1.json index 3063c58..70e5047 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-55fb1.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-55fb1.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"]}],"metadata":{"title":">(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:SzsE1goiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","roleHeading":"Operator","extendedModule":"Swift"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-55fb1":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","abstract":[],"title":">(_:_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.>(_:_:)"},{"text":".","type":"text"}],"sections":[],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"op","title":">(_:_:)","extendedModule":"Swift","externalID":"s:SzsE1goiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-55fb1":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","title":">(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-5fu7s.json b/docs/data/documentation/bigint/biguint/_(_:_:)-5fu7s.json index f44ce8f..27c2105 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-5fu7s.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-5fu7s.json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}],"kind":"declarations"},{"content":[{"anchor":"discussion","text":"Discussion","type":"heading","level":2},{"style":"note","name":"Complexity","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}]}],"kind":"content"}],"abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" is less than ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"metadata":{"externalID":"s:6BigInt0A4UIntV1loiySbAC_ACtFZ","symbolKind":"op","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","roleHeading":"Operator","title":"<(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5fu7s":{"role":"symbol","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is less than "},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","title":"<(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"roleHeading":"Operator","extendedModule":"BigInt","title":"<(_:_:)","externalID":"s:6BigInt0A4UIntV1loiySbAC_ACtFZ","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"modules":[{"name":"BigInt"}],"symbolKind":"op"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" is less than "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s"]}],"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"type":"aside","style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}]}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5fu7s":{"title":"<(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" is less than ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-5zsxd.json b/docs/data/documentation/bigint/biguint/_(_:_:)-5zsxd.json index ab7e24c..d79a48c 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-5zsxd.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-5zsxd.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.^(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","title":"^(_:_:)","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"externalID":"s:SzsE1xoiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5zsxd":{"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"^(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.^(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"symbolKind":"op","title":"^(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:SzsE1xoiyxx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","roleHeading":"Operator"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5zsxd":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd","title":"^(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-757ft.json b/docs/data/documentation/bigint/biguint/_(_:_:)-757ft.json index 3ba6f8e..f4ee36b 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-757ft.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-757ft.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-757ft"]}],"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":">(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","symbolKind":"op","externalID":"s:SLsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>(_:_:)"},{"text":".","type":"text"}],"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-757ft":{"url":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","abstract":[],"type":"topic","role":"symbol","kind":"symbol","title":">(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-757ft"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>(_:_:)"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"externalID":"s:SLsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":">(_:_:)","extendedModule":"Swift","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","roleHeading":"Operator"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-757ft":{"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":">(_:_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-7d6ky.json b/docs/data/documentation/bigint/biguint/_(_:_:)-7d6ky.json index 226ecd5..1be445e 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-7d6ky.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-7d6ky.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"\/","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use "},{"code":"divided(by:)","type":"codeVoice"},{"type":"text","text":" if you also need the remainder."}]}],"name":"Note","style":"note","type":"aside"}]}],"sections":[],"abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the quotient."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky"},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"extendedModule":"BigInt","title":"\/(_:_:)","roleHeading":"Operator","externalID":"s:6BigInt0A4UIntV1doiyA2C_ACtFZ","role":"symbol","symbolKind":"op","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"\/","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-7d6ky":{"abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the quotient."}],"type":"topic","title":"\/(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"\/","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","metadata":{"externalID":"s:6BigInt0A4UIntV1doiyA2C_ACtFZ","extendedModule":"BigInt","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"role":"symbol","symbolKind":"op","title":"\/(_:_:)"},"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the quotient."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"\/","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"Use ","type":"text"},{"type":"codeVoice","code":"divided(by:)"},{"text":" if you also need the remainder.","type":"text"}]}],"type":"aside","name":"Note"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-7d6ky":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","url":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"type":"text","text":" and return the quotient."}],"role":"symbol","type":"topic","title":"\/(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-939wz.json b/docs/data/documentation/bigint/biguint/_(_:_:)-939wz.json index 4bcdc86..d720b58 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-939wz.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-939wz.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","externalID":"s:SzsE1loiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"<(_:_:)","extendedModule":"Swift","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-939wz"]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.<(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-939wz":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","kind":"symbol","title":"<(_:_:)","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","symbolKind":"op","role":"symbol","title":"<(_:_:)","roleHeading":"Operator","externalID":"s:SzsE1loiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-939wz"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.<(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-939wz":{"title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-971ls.json b/docs/data/documentation/bigint/biguint/_(_:_:)-971ls.json index 7cc2e2f..3bb1f5c 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-971ls.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-971ls.json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.<(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"extendedModule":"Swift","role":"symbol","externalID":"s:SxsE1loiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"<(_:_:)","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-971ls"]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-971ls":{"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.<(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"x"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-971ls"]}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Operator","role":"symbol","externalID":"s:SxsE1loiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":"<(_:_:)","symbolKind":"op","extendedModule":"Swift"},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-971ls":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","type":"topic","title":"<(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-kd14.json b/docs/data/documentation/bigint/biguint/_(_:_:)-kd14.json index a32c104..2146a21 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-kd14.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-kd14.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"metadata":{"role":"symbol","externalID":"s:SzsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","title":">(_:_:)","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-kd14"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Comparable.>(_:_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-kd14":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","abstract":[],"title":">(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-kd14"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:SzsE1goiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","title":">(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>(_:_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-kd14":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","type":"topic","title":">(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_(_:_:)-lmtg.json b/docs/data/documentation/bigint/biguint/_(_:_:)-lmtg.json index 12aa8ba..51dc605 100644 --- a/docs/data/documentation/bigint/biguint/_(_:_:)-lmtg.json +++ b/docs/data/documentation/bigint/biguint/_(_:_:)-lmtg.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"content":[{"inlineContent":[{"type":"text","text":"Use "},{"code":"divided(by:)","type":"codeVoice"},{"text":" if you also need the remainder.","type":"text"}],"type":"paragraph"}],"name":"Note","type":"aside","style":"note"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","interfaceLanguage":"swift"},"metadata":{"symbolKind":"op","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"role":"symbol","modules":[{"name":"BigInt"}],"title":"%(_:_:)","externalID":"s:6BigInt0A4UIntV1roiyA2C_ACtFZ","roleHeading":"Operator"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-lmtg"]}],"sections":[],"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"x"},{"text":" by ","type":"text"},{"code":"y","type":"codeVoice"},{"type":"text","text":" and return the remainder."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-lmtg":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","role":"symbol","title":"%(_:_:)","type":"topic","abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and return the remainder.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use "},{"code":"divided(by:)","type":"codeVoice"},{"text":" if you also need the remainder.","type":"text"}]}],"name":"Note","type":"aside","style":"note"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","title":"%(_:_:)","roleHeading":"Operator","externalID":"s:6BigInt0A4UIntV1roiyA2C_ACtFZ","extendedModule":"BigInt","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"%"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the remainder."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/_(_:_:)-lmtg"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-lmtg":{"role":"symbol","title":"%(_:_:)","abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and return the remainder.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-4r1a2.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-4r1a2.json index ed65fd1..277d780 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-4r1a2.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-4r1a2.json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]}]},{"kind":"content","content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"Use ","type":"text"},{"type":"codeVoice","code":"divided(by:)"},{"type":"text","text":" if you also need the remainder."}]}],"name":"Note","type":"aside"}]}],"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":"\/=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"\/=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV2deoiyyACz_ACtFZ","symbolKind":"op","role":"symbol"},"abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"text":" and store the quotient in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-4r1a2":{"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"text":" and store the quotient in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","title":"\/=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"\/=(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"\/=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV2deoiyyACz_ACtFZ","symbolKind":"op","modules":[{"name":"BigInt"}]},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and store the quotient in "},{"code":"x","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"]}]},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"name":"Note","type":"aside","style":"note","content":[{"inlineContent":[{"text":"Use ","type":"text"},{"code":"divided(by:)","type":"codeVoice"},{"type":"text","text":" if you also need the remainder."}],"type":"paragraph"}]}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-4r1a2":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"text":" and store the quotient in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"title":"\/=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-5b48p.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-5b48p.json index 7a1ec1b..10fec33 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-5b48p.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-5b48p.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]}]}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"extendedModule":"Swift","role":"symbol","externalID":"s:SzsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Operator","symbolKind":"op","title":"<=(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-5b48p":{"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","abstract":[],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","kind":"symbol","role":"symbol","title":"<=(_:_:)"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Operator","symbolKind":"op","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"extendedModule":"Swift","role":"symbol","externalID":"s:SzsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p"]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-5b48p":{"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"<=(_:_:)","type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-62ah6.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-62ah6.json index 2af93c9..ded1dd5 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-62ah6.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-62ah6.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.<=(_:_:)"},{"type":"text","text":"."}],"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","interfaceLanguage":"swift"},"metadata":{"symbolKind":"op","extendedModule":"Swift","externalID":"s:SLsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","roleHeading":"Operator","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-62ah6":{"type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"metadata":{"title":"<=(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","extendedModule":"Swift","role":"symbol","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:SLsE2leoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Comparable.<=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-62ah6":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-6nrw3.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-6nrw3.json index 98e24ca..6e177be 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-6nrw3.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-6nrw3.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":", and store the result in "},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"anchor":"discussion","type":"heading"},{"name":"Complexity","content":[{"inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}],"type":"paragraph"}],"type":"aside","style":"note"}]}],"metadata":{"externalID":"s:6BigInt0A4UIntV2oeoiyyACz_ACtFZ","modules":[{"name":"BigInt"}],"role":"symbol","title":"|=(_:_:)","extendedModule":"BigInt","roleHeading":"Operator","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6nrw3":{"abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":", and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"type":"topic","title":"|=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":", and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"a","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}]}],"name":"Complexity","style":"note"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"|=(_:_:)","roleHeading":"Operator","symbolKind":"op","extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV2oeoiyyACz_ACtFZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"|=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6nrw3":{"title":"|=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"type":"text","text":", and store the result in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-6qcc6.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-6qcc6.json index cac3517..6514231 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-6qcc6.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-6qcc6.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"%=(_:_:)","symbolKind":"op","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","role":"symbol","roleHeading":"Operator","externalID":"s:6BigInt0A4UIntV2reoiyyACz_ACtFZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}]},"abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and store the remainder in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"x","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use "},{"type":"codeVoice","code":"divided(by:)"},{"text":" if you also need the remainder.","type":"text"}]}],"name":"Note","type":"aside","style":"note"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6qcc6":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","role":"symbol","title":"%=(_:_:)","type":"topic","abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"y","type":"codeVoice"},{"type":"text","text":" and store the remainder in "},{"code":"x","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"%=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and store the remainder in "},{"type":"codeVoice","code":"x"},{"text":".","type":"text"}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","interfaceLanguage":"swift"},"metadata":{"title":"%=(_:_:)","roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV2reoiyyACz_ACtFZ","symbolKind":"op","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"x"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"y","kind":"internalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Use "},{"code":"divided(by:)","type":"codeVoice"},{"text":" if you also need the remainder.","type":"text"}]}],"type":"aside","name":"Note"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6qcc6":{"title":"%=(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and store the remainder in ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-71fgh.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-71fgh.json index 1757e2f..cc20a3a 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-71fgh.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-71fgh.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<=(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","sections":[],"metadata":{"externalID":"s:SzsE2leoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","roleHeading":"Operator","role":"symbol","symbolKind":"op","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"<=(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-71fgh":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"<=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","metadata":{"symbolKind":"op","role":"symbol","roleHeading":"Operator","title":"<=(_:_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SzsE2leoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.<=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-71fgh":{"title":"<=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-7e6lu.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-7e6lu.json index a5785f0..3ef7c70 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-7e6lu.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-7e6lu.json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"content":[{"inlineContent":[{"text":"O(max(a.count, b.count))","type":"text"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}]}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"^="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"roleHeading":"Operator","externalID":"s:6BigInt0A4UIntV2xeoiyyACz_ACtFZ","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"op","role":"symbol","title":"^=(_:_:)"},"abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-7e6lu":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","role":"symbol","title":"^=(_:_:)","type":"topic","abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"code":"a","type":"codeVoice"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"^="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":")"}]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(max(a.count, b.count))"}]}],"style":"note","name":"Complexity","type":"aside"}]}],"kind":"symbol","metadata":{"externalID":"s:6BigInt0A4UIntV2xeoiyyACz_ACtFZ","roleHeading":"Operator","title":"^=(_:_:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"symbolKind":"op"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-7e6lu":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"code":"a","type":"codeVoice"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"title":"^=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-81srf.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-81srf.json index 43b1547..a645c5a 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-81srf.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-81srf.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.>=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":">=(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Operator","symbolKind":"op","externalID":"s:SzsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-81srf"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-81srf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","role":"symbol","title":">=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>=(_:_:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"op","role":"symbol","roleHeading":"Operator","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"extendedModule":"Swift","externalID":"s:SzsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","title":">=(_:_:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-81srf"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-81srf":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf","title":">=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-8pmgc.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-8pmgc.json index 2082e9b..f502310 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-8pmgc.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-8pmgc.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":" : "},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}]}],"kind":"declarations"}],"sections":[],"metadata":{"extendedModule":"Swift","roleHeading":"Operator","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SzsE2geoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":">=(_:_:)","symbolKind":"op","role":"symbol"},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>=(_:_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-8pmgc":{"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":">=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>=(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"externalID":"s:SzsE2geoiySbx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","title":">=(_:_:)","roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-8pmgc":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","title":">=(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/_=(_:_:)-9gc8b.json b/docs/data/documentation/bigint/biguint/_=(_:_:)-9gc8b.json index 4ade2ac..be281d1 100644 --- a/docs/data/documentation/bigint/biguint/_=(_:_:)-9gc8b.json +++ b/docs/data/documentation/bigint/biguint/_=(_:_:)-9gc8b.json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Comparable.>=(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Operator","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"externalID":"s:SLsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","title":">=(_:_:)","extendedModule":"Swift"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-9gc8b":{"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","role":"symbol","kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b","title":">=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"url":"\/documentation\/bigint\/biguint\/comparable-implementations","abstract":[],"title":"Comparable Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Comparable.>=(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b"]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"internalParam","text":"rhs"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"]}]}],"kind":"symbol","metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"title":">=(_:_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","symbolKind":"op","roleHeading":"Operator","externalID":"s:SLsE2geoiySbx_xtFZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Comparable-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations","title":"Comparable Implementations","abstract":[],"type":"topic","kind":"article","url":"\/documentation\/bigint\/biguint\/comparable-implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-9gc8b":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b","type":"topic","title":">=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__(_:_:)-2vptt.json b/docs/data/documentation/bigint/biguint/__(_:_:)-2vptt.json index dbcf02c..affebf1 100644 --- a/docs/data/documentation/bigint/biguint/__(_:_:)-2vptt.json +++ b/docs/data/documentation/bigint/biguint/__(_:_:)-2vptt.json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-2vptt"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"text":".","type":"text"}],"metadata":{"roleHeading":"Operator","modules":[{"name":"BigInt"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV2lloiyA2C_xtSzRzlFZ","symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"title":"<<(_:_:)","extendedModule":"BigInt"},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-2vptt":{"abstract":[],"type":"topic","title":"<<(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV2lloiyA2C_xtSzRzlFZ","title":"<<(_:_:)","role":"symbol","symbolKind":"op","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-2vptt"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-2vptt":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","kind":"symbol","title":"<<(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__(_:_:)-5r67m.json b/docs/data/documentation/bigint/biguint/__(_:_:)-5r67m.json index 389b084..ad86171 100644 --- a/docs/data/documentation/bigint/biguint/__(_:_:)-5r67m.json +++ b/docs/data/documentation/bigint/biguint/__(_:_:)-5r67m.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","metadata":{"externalID":"s:6BigInt0A4UIntV2ggoiyA2C_xtSzRzlFZ","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","title":">>(_:_:)","symbolKind":"op","role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-5r67m"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.>>(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-5r67m":{"abstract":[],"type":"topic","kind":"symbol","title":">>(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","url":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"role":"symbol"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-5r67m"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.>>(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Operator","symbolKind":"op","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"externalID":"s:6BigInt0A4UIntV2ggoiyA2C_xtSzRzlFZ","title":">>(_:_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-5r67m":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","abstract":[],"title":">>(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__(_:_:)-75rdx.json b/docs/data/documentation/bigint/biguint/__(_:_:)-75rdx.json index e70b90f..33d988c 100644 --- a/docs/data/documentation/bigint/biguint/__(_:_:)-75rdx.json +++ b/docs/data/documentation/bigint/biguint/__(_:_:)-75rdx.json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"title":">>(_:_:)","externalID":"s:SzsE2ggoiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"op","roleHeading":"Operator","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.>>(_:_:)"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-75rdx"]}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"internalParam","text":"lhs"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"RHS","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-75rdx":{"abstract":[],"type":"topic","title":">>(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"op","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:SzsE2ggoiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","title":">>(_:_:)","roleHeading":"Operator","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-75rdx"]}],"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","kind":"typeIdentifier","text":"BinaryInteger"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.>>(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-75rdx":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","title":">>(_:_:)","abstract":[],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__(_:_:)-924qx.json b/docs/data/documentation/bigint/biguint/__(_:_:)-924qx.json index f4fcdf4..047571c 100644 --- a/docs/data/documentation/bigint/biguint/__(_:_:)-924qx.json +++ b/docs/data/documentation/bigint/biguint/__(_:_:)-924qx.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"externalID":"s:SzsE2lloiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","title":"<<(_:_:)","roleHeading":"Operator","symbolKind":"op","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.<<(_:_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-924qx"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-924qx":{"type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"title":"<<(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__(_:_:)-924qx"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.<<(_:_:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Operator","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:SzsE2lloiyxx_qd__tSzRd__lFZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"op","title":"<<(_:_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"kind":"text","text":">("},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"internalParam","text":"rhs"},{"kind":"text","text":": "},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-924qx":{"url":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","abstract":[],"title":"<<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__=(_:_:)-75dbc.json b/docs/data/documentation/bigint/biguint/__=(_:_:)-75dbc.json index 75338a4..e2dc3e0 100644 --- a/docs/data/documentation/bigint/biguint/__=(_:_:)-75dbc.json +++ b/docs/data/documentation/bigint/biguint/__=(_:_:)-75dbc.json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Other"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.>>=(_:_:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Operator","title":">>=(_:_:)","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV3ggeoiyyACz_xtSzRzlFZ","role":"symbol","symbolKind":"op"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-75dbc":{"abstract":[],"type":"topic","title":">>=(_:_:)","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc"]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.>>=(_:_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc"},"metadata":{"title":">>=(_:_:)","symbolKind":"op","modules":[{"name":"BigInt"}],"roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigInt0A4UIntV3ggeoiyyACz_xtSzRzlFZ","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-75dbc":{"title":">>=(_:_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/__=(_:_:)-95qlf.json b/docs/data/documentation/bigint/biguint/__=(_:_:)-95qlf.json index b1a429f..0b7c484 100644 --- a/docs/data/documentation/bigint/biguint/__=(_:_:)-95qlf.json +++ b/docs/data/documentation/bigint/biguint/__=(_:_:)-95qlf.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","interfaceLanguage":"swift"},"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}],"role":"symbol","roleHeading":"Operator","title":"<<=(_:_:)","externalID":"s:6BigInt0A4UIntV3lleoiyyACz_xtSzRzlFZ","symbolKind":"op","modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<<=(_:_:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Other","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:Sz","text":"BinaryInteger","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-95qlf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","role":"symbol","title":"<<=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.<<=(_:_:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"rhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV3lleoiyyACz_xtSzRzlFZ","modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Operator","title":"<<=(_:_:)","extendedModule":"BigInt","symbolKind":"op"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-95qlf":{"title":"<<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/additivearithmetic-implementations.json b/docs/data/documentation/bigint/biguint/additivearithmetic-implementations.json index dd0ce7c..e7871f4 100644 --- a/docs/data/documentation/bigint/biguint/additivearithmetic-implementations.json +++ b/docs/data/documentation/bigint/biguint/additivearithmetic-implementations.json @@ -1 +1 @@ -{"kind":"article","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"topicSections":[{"anchor":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle"],"title":"Operators","generated":true},{"anchor":"Type-Properties","title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero"],"generated":true}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"AdditiveArithmetic Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/additivearithmetic-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-47mle":{"abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","role":"symbol","title":"-=(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-3dht1":{"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"+=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/zero":{"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Self","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}]},"type":"topic","kind":"symbol","abstract":[],"title":"zero","url":"\/documentation\/bigint\/biguint\/zero","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero"},"doc://BigInt/documentation/BigInt/BigUInt/+(_:)":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"+","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"+(_:)","url":"\/documentation\/bigint\/biguint\/+(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"title":"AdditiveArithmetic Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/additivearithmetic-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"topicSections":[{"title":"Operators","anchor":"Operators","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle"]},{"generated":true,"title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero"],"anchor":"Type-Properties"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"article","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/+(_:)":{"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/+(_:)","kind":"symbol","title":"+(_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/zero":{"abstract":[],"type":"topic","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero","title":"zero","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"zero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"url":"\/documentation\/bigint\/biguint\/zero","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-3dht1":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-3dht1","abstract":[],"url":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"+=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-47mle":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","kind":"symbol","title":"-=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-47mle"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/advanced(by:).json b/docs/data/documentation/bigint/biguint/advanced(by:).json index 3341e14..ea698d5 100644 --- a/docs/data/documentation/bigint/biguint/advanced(by:).json +++ b/docs/data/documentation/bigint/biguint/advanced(by:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/advanced(by:)"]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"abstract":[{"type":"text","text":"Adds "},{"type":"codeVoice","code":"n"},{"type":"text","text":" to "},{"code":"self","type":"codeVoice"},{"text":" and returns the result. Traps if the result would be less than zero.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"n"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","role":"symbol","symbolKind":"method","extendedModule":"BigInt","title":"advanced(by:)","externalID":"s:6BigInt0A4UIntV8advanced2byAc2AV_tF","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"advanced","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/advanced(by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/advanced(by:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"abstract":[{"type":"text","text":"Adds "},{"type":"codeVoice","code":"n"},{"type":"text","text":" to "},{"code":"self","type":"codeVoice"},{"type":"text","text":" and returns the result. Traps if the result would be less than zero."}],"type":"topic","kind":"symbol","title":"advanced(by:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","kind":"article","title":"Strideable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/strideable-implementations"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/advanced(by:)"]}],"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"advanced","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"n"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)"},"abstract":[{"text":"Adds ","type":"text"},{"type":"codeVoice","code":"n"},{"type":"text","text":" to "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and returns the result. Traps if the result would be less than zero."}],"metadata":{"title":"advanced(by:)","roleHeading":"Instance Method","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"advanced","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV8advanced2byAc2AV_tF","symbolKind":"method","modules":[{"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/advanced(by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/advanced(by:)","kind":"symbol","title":"advanced(by:)","abstract":[{"type":"text","text":"Adds "},{"type":"codeVoice","code":"n"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" and returns the result. Traps if the result would be less than zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"title":"Strideable Implementations","role":"collectionGroup","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","url":"\/documentation\/bigint\/biguint\/strideable-implementations","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/binaryinteger-implementations.json b/docs/data/documentation/bigint/biguint/binaryinteger-implementations.json index fa7e1a2..cd02ded 100644 --- a/docs/data/documentation/bigint/biguint/binaryinteger-implementations.json +++ b/docs/data/documentation/bigint/biguint/binaryinteger-implementations.json @@ -1 +1 @@ -{"kind":"article","sections":[],"metadata":{"modules":[{"name":"BigInt"}],"title":"BinaryInteger Implementations","role":"collectionGroup","roleHeading":"API Collection"},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/binaryinteger-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","interfaceLanguage":"swift"},"topicSections":[{"generated":true,"anchor":"Structures","title":"Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]},{"title":"Operators","anchor":"Operators","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)"]},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)"],"title":"Initializers","generated":true,"anchor":"Initializers"},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property"],"title":"Instance Properties","anchor":"Instance-Properties"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()"],"anchor":"Instance-Methods","title":"Instance Methods","generated":true},{"title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce"],"generated":true,"anchor":"Type-Properties"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/~(_:)":{"abstract":[{"text":"Return the ones’ complement of ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/~(_:)","kind":"symbol","title":"~(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-4zjdt":{"type":"topic","abstract":[],"role":"symbol","title":"|(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt"},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-75dbc":{"abstract":[],"type":"topic","title":">>=(_:_:)","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-3pf4s":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s","kind":"symbol","title":"init(_:strategy:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-846lz":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","kind":"symbol","title":"init(_:format:lenient:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"text":"Percent","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-8wged":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"init(_:format:lenient:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/signum()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()","title":"signum()","abstract":[{"type":"text","text":"Returns "},{"code":"1","type":"codeVoice"},{"type":"text","text":" if this value is, positive; otherwise, "},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/signum()"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-7gkuo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"code":"a","type":"codeVoice"},{"text":" and store the result in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"title":"-=(_:_:)","role":"symbol","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"-=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-71fgh":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"title":"<=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-7s9hj":{"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"!=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/+(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" together and return the result.","type":"text"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/+(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"+"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"title":"+(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-3yz6v":{"url":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"title":"init(exactly:)"},"doc://BigInt/documentation/BigInt/BigUInt/&(_:_:)":{"abstract":[],"type":"topic","kind":"symbol","title":"&(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)","url":"\/documentation\/bigint\/biguint\/&(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-939wz":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","kind":"symbol","title":"<(_:_:)","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz"},"doc://BigInt/documentation/BigInt/BigUInt/bitWidth":{"url":"\/documentation\/bigint\/biguint\/bitwidth","abstract":[{"type":"text","text":"The minimum number of bits required to represent this integer in binary."}],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"bitWidth"},"doc://BigInt/documentation/BigInt/BigUInt/*=(_:_:)":{"abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and store the result in "},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","kind":"symbol","title":"*=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","url":"\/documentation\/bigint\/biguint\/*=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"*="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-on2v":{"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"init(_:strategy:)"},"doc://BigInt/documentation/BigInt/BigUInt/init(truncatingIfNeeded:)":{"abstract":[],"type":"topic","kind":"symbol","title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)","url":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/&=(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","type":"topic","abstract":[{"text":"Calculate the bitwise AND of ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"title":"&=(_:_:)","url":"\/documentation\/bigint\/biguint\/&=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"&=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-7t7ce":{"url":"\/documentation\/bigint\/biguint\/issigned-7t7ce","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"title":"isSigned"},"doc://BigInt/documentation/BigInt/BigUInt/trailingZeroBitCount":{"type":"topic","url":"\/documentation\/bigint\/biguint\/trailingzerobitcount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"trailingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"abstract":[{"type":"text","text":"The number of trailing zero bits in the binary representation of this integer."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","title":"trailingZeroBitCount","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5zsxd":{"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","abstract":[],"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"}],"title":"^(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd"},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-9ivms":{"abstract":[],"type":"topic","kind":"symbol","title":"formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","url":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-9bhcx":{"url":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/init()-nmq2":{"abstract":[],"type":"topic","kind":"symbol","title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","url":"\/documentation\/bigint\/biguint\/init()-nmq2","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-55fb1":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","abstract":[],"title":">(_:_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"},"doc://BigInt/documentation/BigInt/BigUInt/-(_:_:)":{"url":"\/documentation\/bigint\/biguint\/-(_:_:)","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and return the result."}],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"title":"-(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/words-swift.property":{"abstract":[],"type":"topic","kind":"symbol","title":"words","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property","url":"\/documentation\/bigint\/biguint\/words-swift.property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Words","preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/isMultiple(of:)":{"url":"\/documentation\/bigint\/biguint\/ismultiple(of:)","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"isMultiple(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-5r67m":{"abstract":[],"type":"topic","kind":"symbol","title":">>(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","url":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":">>"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-8pmgc":{"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":">=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-5zsmf":{"abstract":[],"type":"topic","kind":"symbol","title":"init(_:format:lenient:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-109o9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","role":"symbol","title":"!=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"!="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-75rdx":{"abstract":[],"type":"topic","title":">>(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RHS"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"RHS","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-95qlf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","role":"symbol","title":"<<=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-4r1a2":{"abstract":[{"type":"text","text":"Divide "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"text":" and store the quotient in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","title":"\/=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/quotientAndRemainder(dividingBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","role":"symbol","title":"quotientAndRemainder(dividingBy:)","type":"topic","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the resulting quotient and remainder."}],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"text":"dividingBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> (quotient","kind":"text"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", remainder"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)"},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-7h5bi":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" together, and store the sum in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"+="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"title":"+=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi"},"doc://BigInt/documentation/BigInt/BigUInt/init(clamping:)":{"abstract":[],"type":"topic","title":"init(clamping:)","url":"\/documentation\/bigint\/biguint\/init(clamping:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-lmtg":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","role":"symbol","title":"%(_:_:)","type":"topic","abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and return the remainder.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-1xms":{"abstract":[],"type":"topic","title":"==(_:_:)","url":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6qcc6":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","role":"symbol","title":"%=(_:_:)","type":"topic","abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"code":"y","type":"codeVoice"},{"type":"text","text":" and store the remainder in "},{"code":"x","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"%=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-2vptt":{"abstract":[],"type":"topic","title":"<<(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-7e6lu":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","role":"symbol","title":"^=(_:_:)","type":"topic","abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"code":"a","type":"codeVoice"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-2d6da":{"abstract":[],"type":"topic","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/formatted()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()","role":"symbol","title":"formatted()","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"url":"\/documentation\/bigint\/biguint\/formatted()"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-924qx":{"type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"RHS","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"RHS","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"title":"<<(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6nrw3":{"abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":", and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"type":"topic","title":"|=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"|="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/*(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","role":"symbol","title":"*(_:_:)","type":"topic","abstract":[{"type":"text","text":"Multiply "},{"code":"a","type":"codeVoice"},{"type":"text","text":" by "},{"code":"b","type":"codeVoice"},{"type":"text","text":" and return the result."}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"*","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/*(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-7d6ky":{"abstract":[{"type":"text","text":"Divide "},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the quotient."}],"type":"topic","title":"\/(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"\/","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-5gw2a":{"type":"topic","role":"symbol","title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","kind":"symbol","abstract":[],"fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"BigInt"}],"title":"BinaryInteger Implementations","roleHeading":"API Collection","role":"collectionGroup"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","interfaceLanguage":"swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/binaryinteger-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"anchor":"Structures","title":"Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"],"generated":true},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)"],"anchor":"Operators","generated":true,"title":"Operators"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)"],"title":"Initializers","anchor":"Initializers","generated":true},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property"],"anchor":"Instance-Properties","generated":true,"title":"Instance Properties"},{"anchor":"Instance-Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()"],"title":"Instance Methods"},{"generated":true,"title":"Type Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce"],"anchor":"Type-Properties"}],"kind":"article","schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/init()-nmq2":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","title":"init()","url":"\/documentation\/bigint\/biguint\/init()-nmq2","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-7e6lu":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-7e6lu","abstract":[{"type":"text","text":"Calculate the bitwise XOR of "},{"code":"a","type":"codeVoice"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}],"title":"^=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"^=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-5zsmf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","type":"topic","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-1xms":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-1xms","url":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","abstract":[],"title":"==(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"=="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/isMultiple(of:)":{"title":"isMultiple(of:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isMultiple"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/ismultiple(of:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-7t7ce":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"isSigned","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/issigned-7t7ce","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-7d6ky":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-7d6ky","url":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"\/"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"type":"text","text":" and return the quotient."}],"role":"symbol","type":"topic","title":"\/(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/&=(_:_:)":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"&="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&=(_:_:)","url":"\/documentation\/bigint\/biguint\/&=(_:_:)","role":"symbol","title":"&=(_:_:)","type":"topic","abstract":[{"text":"Calculate the bitwise AND of ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":" and return the result.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-3yz6v":{"title":"init(exactly:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-9bhcx":{"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","title":"init(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-5gw2a":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a","type":"topic","kind":"symbol","title":"init(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5zsxd":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"^","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5zsxd","title":"^(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-846lz":{"title":"init(_:format:lenient:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/*(_:_:)":{"title":"*(_:_:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return the result."}],"url":"\/documentation\/bigint\/biguint\/*(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"*"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*(_:_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-95qlf":{"title":"<<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<<=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"text":")","kind":"text"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-95qlf","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-8wged":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","type":"topic","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-9ivms":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-7s9hj":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"!=","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"!=(_:_:)","role":"symbol","kind":"symbol","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-7s9hj","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj"},"doc://BigInt/documentation/BigInt/BigUInt/trailingZeroBitCount":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/trailingzerobitcount","title":"trailingZeroBitCount","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trailingZeroBitCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"abstract":[{"type":"text","text":"The number of trailing zero bits in the binary representation of this integer."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-75rdx":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-75rdx","title":">>(_:_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/+(_:_:)":{"title":"+(_:_:)","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Add "},{"type":"codeVoice","code":"a"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":" together and return the result.","type":"text"}],"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"+","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/+(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-4r1a2":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-4r1a2","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"text":" and store the quotient in ","type":"text"},{"code":"x","type":"codeVoice"},{"text":".","type":"text"}],"title":"\/=(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"\/="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-109o9":{"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"!="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"!=(_:_:)","kind":"symbol","role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-109o9","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9"},"doc://BigInt/documentation/BigInt/BigUInt/&(_:_:)":{"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"&"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/&(_:_:)","kind":"symbol","abstract":[],"role":"symbol","type":"topic","title":"&(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/&(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/words-swift.property":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","text":"Words","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.property","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property","title":"words"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-on2v":{"title":"init(_:strategy:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/+=(_:_:)-7h5bi":{"title":"+=(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/+=(_:_:)-7h5bi","abstract":[{"text":"Add ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"text":" together, and store the sum in ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"+=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-5r67m":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-5r67m","abstract":[],"title":">>(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">>","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"Other","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-939wz":{"title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-939wz","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(clamping:)":{"title":"init(clamping:)","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(clamping:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6nrw3":{"title":"|=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6nrw3","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"Calculate the bitwise OR of "},{"type":"codeVoice","code":"a"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"type":"text","text":", and store the result in "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-2vptt":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-2vptt","kind":"symbol","title":"<<(_:_:)","url":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-8pmgc":{"role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-8pmgc","title":">=(_:_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc"},"doc://BigInt/documentation/BigInt/BigUInt/-(_:_:)":{"url":"\/documentation\/bigint\/biguint\/-(_:_:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"-"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic","abstract":[{"type":"text","text":"Subtract "},{"code":"b","type":"codeVoice"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and return the result.","type":"text"}],"title":"-(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-(_:_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/-=(_:_:)-7gkuo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/-=(_:_:)-7gkuo","abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" and store the result in ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"-="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","kind":"symbol","title":"-=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/formatted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"kind":"symbol","title":"formatted()","url":"\/documentation\/bigint\/biguint\/formatted()","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()"},"doc://BigInt/documentation/BigInt/BigUInt/bitWidth":{"title":"bitWidth","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/bitwidth","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"The minimum number of bits required to represent this integer in binary."}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-55fb1":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-55fb1","title":">(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"Other","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Other","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1"},"doc://BigInt/documentation/BigInt/BigUInt/signum()":{"abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"1"},{"text":" if this value is, positive; otherwise, ","type":"text"},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/signum()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()","title":"signum()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/~(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/~(_:)","abstract":[{"text":"Return the ones’ complement of ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"kind":"symbol","title":"~(_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-lmtg":{"role":"symbol","title":"%(_:_:)","abstract":[{"text":"Divide ","type":"text"},{"code":"x","type":"codeVoice"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and return the remainder.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg","type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"%","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-lmtg"},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-2d6da":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","type":"topic","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/__=(_:_:)-75dbc":{"title":">>=(_:_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__=(_:_:)-75dbc","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">>="},{"text":" ","kind":"text"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Other"},{"text":">(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-6qcc6":{"title":"%=(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"%="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-6qcc6","role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6","abstract":[{"text":"Divide ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":" and store the remainder in ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt/BigUInt/*=(_:_:)":{"role":"symbol","title":"*=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"*=","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/*=(_:_:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"a"},{"type":"text","text":" by "},{"type":"codeVoice","code":"b"},{"text":" and store the result in ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/*=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/__(_:_:)-924qx":{"url":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<<"},{"kind":"text","text":" "},{"text":"<","kind":"text"},{"text":"RHS","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"RHS"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"}],"type":"topic","abstract":[],"title":"<<(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/__(_:_:)-924qx","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-4zjdt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-4zjdt","kind":"symbol","title":"|(_:_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"|","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"}],"abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/quotientAndRemainder(dividingBy:)":{"type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"quotientAndRemainder"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> (quotient","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", remainder"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"quotientAndRemainder(dividingBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","url":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the resulting quotient and remainder."}]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-3pf4s":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","kind":"symbol","title":"init(_:strategy:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"role":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s"},"doc://BigInt/documentation/BigInt/BigUInt/init(truncatingIfNeeded:)":{"kind":"symbol","title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-71fgh":{"title":"<=(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"kind":"text","text":"<"},{"text":"Other","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Other"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-71fgh"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/bitwidth.json b/docs/data/documentation/bigint/biguint/bitwidth.json index 1cbc813..4148a52 100644 --- a/docs/data/documentation/bigint/biguint/bitwidth.json +++ b/docs/data/documentation/bigint/biguint/bitwidth.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"floor(log2(2 * self + 1))"}]}]},{"content":[{"anchor":"discussion","text":"Discussion","type":"heading","level":2},{"content":[{"inlineContent":[{"type":"text","text":"O(1)"}],"type":"paragraph"}],"style":"note","type":"aside","name":"Complexity"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/bitwidth"]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"The minimum number of bits required to represent this integer in binary."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth"},"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","title":"bitWidth","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"symbolKind":"property","externalID":"s:6BigInt0A4UIntV8bitWidthSivp","role":"symbol","roleHeading":"Instance Property"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/bitWidth":{"url":"\/documentation\/bigint\/biguint\/bitwidth","abstract":[{"type":"text","text":"The minimum number of bits required to represent this integer in binary."}],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"bitWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"bitWidth"}}} \ No newline at end of file +{"metadata":{"title":"bitWidth","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV8bitWidthSivp","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"property"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/bitwidth"]}],"sections":[],"abstract":[{"text":"The minimum number of bits required to represent this integer in binary.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]},{"content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"inlineContent":[{"type":"text","text":"floor(log2(2 * self + 1))"}],"type":"paragraph"}],"kind":"content"},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"type":"aside","style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(1)"}]}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/bitWidth":{"title":"bitWidth","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"bitWidth","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/bitwidth","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/bitWidth","kind":"symbol","type":"topic","abstract":[{"type":"text","text":"The minimum number of bits required to represent this integer in binary."}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/comparable-implementations.json b/docs/data/documentation/bigint/biguint/comparable-implementations.json index a9c2fd5..1b0f48a 100644 --- a/docs/data/documentation/bigint/biguint/comparable-implementations.json +++ b/docs/data/documentation/bigint/biguint/comparable-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"Comparable Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/comparable-implementations"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"},"kind":"article","topicSections":[{"generated":true,"title":"Operators","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b"],"anchor":"Operators"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-81srf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","role":"symbol","title":">=(_:_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-jf8p":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeThrough","kind":"typeIdentifier","preciseIdentifier":"s:s19PartialRangeThroughV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","title":"...(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-5b48p":{"type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","abstract":[],"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","kind":"symbol","role":"symbol","title":"<=(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5fu7s":{"role":"symbol","abstract":[{"text":"Return true iff ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" is less than "},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","title":"<(_:_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-9gc8b":{"url":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","role":"symbol","kind":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b","title":">=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-757ft":{"url":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","abstract":[],"type":"topic","role":"symbol","kind":"symbol","title":">(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","kind":"symbol","type":"topic","title":"..<(_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"PartialRangeUpTo","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeUpToV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-971ls":{"role":"symbol","type":"topic","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","title":"<(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-993l9":{"role":"symbol","abstract":[],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","url":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","title":"...(_:)","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"PartialRangeFrom","kind":"typeIdentifier","preciseIdentifier":"s:s16PartialRangeFromV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-62ah6":{"type":"topic","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"<=","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"<=(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-kd14":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","abstract":[],"title":">(_:_:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":">","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/...(_:_:)":{"abstract":[],"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"...","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"title":"...(_:_:)","url":"\/documentation\/bigint\/biguint\/'...(_:_:)","role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","kind":"symbol","type":"topic","title":"..<(_:_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/comparable-implementations"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Comparable-Implementations"},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b"],"generated":true,"title":"Operators","anchor":"Operators"}],"metadata":{"modules":[{"name":"BigInt"}],"title":"Comparable Implementations","roleHeading":"API Collection","role":"collectionGroup"},"kind":"article","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-jf8p":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-jf8p","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s19PartialRangeThroughV","text":"PartialRangeThrough","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"...(_:)","type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-9gc8b":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-9gc8b","type":"topic","title":">=(_:_:)","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/...(_:)-993l9":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:)-993l9","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..."},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"PartialRangeFrom","preciseIdentifier":"s:s16PartialRangeFromV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","kind":"symbol","abstract":[],"title":"...(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:_:)":{"title":"..<(_:_:)","url":"\/documentation\/bigint\/biguint\/'.._(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"..<","kind":"identifier"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-5fu7s":{"title":"<(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"type":"topic","abstract":[{"text":"Return true iff ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" is less than ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-5fu7s","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/...(_:_:)":{"title":"...(_:_:)","url":"\/documentation\/bigint\/biguint\/'...(_:_:)","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"...","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:SN","text":"ClosedRange","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/...(_:_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-5b48p":{"kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":"<=(_:_:)","type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-5b48p"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-62ah6":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","title":"<=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-62ah6","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_=(_:_:)-81srf":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf","title":">=(_:_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">="},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_=(_:_:)-81srf","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-971ls":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-971ls","type":"topic","title":"<(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"<"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-757ft":{"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-757ft","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"title":">(_:_:)"},"doc://BigInt/documentation/BigInt/BigUInt/_(_:_:)-kd14":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/_(_:_:)-kd14","type":"topic","title":">(_:_:)","url":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":">"},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/.._(_:)":{"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/.._(_:)","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/'.._(_:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"..<"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:s16PartialRangeUpToV","text":"PartialRangeUpTo","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"..<(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/compare(_:_:).json b/docs/data/documentation/bigint/biguint/compare(_:_:).json index 3e8d830..f1cf975 100644 --- a/docs/data/documentation/bigint/biguint/compare(_:_:).json +++ b/docs/data/documentation/bigint/biguint/compare(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult","kind":"typeIdentifier"}]}]},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"type":"aside","name":"Complexity","style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"O(count)","type":"text"}]}]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Type Method","extendedModule":"BigInt","role":"symbol","symbolKind":"method","modules":[{"name":"BigInt"}],"title":"compare(_:_:)","externalID":"s:6BigInt0A4UIntV7compareySo18NSComparisonResultVAC_ACtFZ","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"c:@E@NSComparisonResult","kind":"typeIdentifier","text":"ComparisonResult"}]},"abstract":[{"type":"text","text":"Compare "},{"type":"codeVoice","code":"a"},{"type":"text","text":" to "},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return an "},{"code":"NSComparisonResult","type":"codeVoice"},{"text":" indicating their order.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/compare(_:_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/compare(_:_:)":{"kind":"symbol","title":"compare(_:_:)","abstract":[{"text":"Compare ","type":"text"},{"code":"a","type":"codeVoice"},{"type":"text","text":" to "},{"type":"codeVoice","code":"b"},{"text":" and return an ","type":"text"},{"code":"NSComparisonResult","type":"codeVoice"},{"text":" indicating their order.","type":"text"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"ComparisonResult","kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/compare(_:_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"a","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"b","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}],"kind":"content"}],"metadata":{"externalID":"s:6BigInt0A4UIntV7compareySo18NSComparisonResultVAC_ACtFZ","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"ComparisonResult","kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult"}],"roleHeading":"Type Method","role":"symbol","title":"compare(_:_:)","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)"},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/compare(_:_:)"]}],"abstract":[{"type":"text","text":"Compare "},{"type":"codeVoice","code":"a"},{"type":"text","text":" to "},{"code":"b","type":"codeVoice"},{"text":" and return an ","type":"text"},{"type":"codeVoice","code":"NSComparisonResult"},{"text":" indicating their order.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/compare(_:_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/compare(_:_:)","abstract":[{"text":"Compare ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"b"},{"type":"text","text":" and return an "},{"type":"codeVoice","code":"NSComparisonResult"},{"text":" indicating their order.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/compare(_:_:)","title":"compare(_:_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations.json b/docs/data/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations.json index ac62036..9867bc7 100644 --- a/docs/data/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations.json +++ b/docs/data/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations.json @@ -1 +1 @@ -{"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"CustomPlaygroundDisplayConvertible Implementations"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","interfaceLanguage":"swift"},"topicSections":[{"anchor":"Instance-Properties","title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription"],"generated":true}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/playgroundDescription":{"abstract":[{"type":"text","text":"Return the playground quick look representation of this integer."}],"type":"topic","role":"symbol","title":"playgroundDescription","url":"\/documentation\/bigint\/biguint\/playgrounddescription","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"title":"Instance Properties","generated":true,"anchor":"Instance-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"CustomPlaygroundDisplayConvertible Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"article","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/playgroundDescription":{"url":"\/documentation\/bigint\/biguint\/playgrounddescription","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"}],"type":"topic","abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"title":"playgroundDescription","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/customstringconvertible-implementations.json b/docs/data/documentation/bigint/biguint/customstringconvertible-implementations.json index 4c052b1..876dd11 100644 --- a/docs/data/documentation/bigint/biguint/customstringconvertible-implementations.json +++ b/docs/data/documentation/bigint/biguint/customstringconvertible-implementations.json @@ -1 +1 @@ -{"sections":[],"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description"],"title":"Instance Properties","generated":true,"anchor":"Instance-Properties"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"roleHeading":"API Collection","title":"CustomStringConvertible Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"article","variants":[{"paths":["\/documentation\/bigint\/biguint\/customstringconvertible-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/description":{"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description","title":"description","url":"\/documentation\/bigint\/biguint\/description","abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/customstringconvertible-implementations"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description"],"generated":true,"title":"Instance Properties","anchor":"Instance-Properties"}],"kind":"article","metadata":{"roleHeading":"API Collection","modules":[{"name":"BigInt"}],"role":"collectionGroup","title":"CustomStringConvertible Implementations"},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","interfaceLanguage":"swift"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/description":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"title":"description","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description","abstract":[{"type":"text","text":"Return the decimal representation of this integer."}],"url":"\/documentation\/bigint\/biguint\/description"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/decodable-implementations.json b/docs/data/documentation/bigint/biguint/decodable-implementations.json index eee7efd..9a6a302 100644 --- a/docs/data/documentation/bigint/biguint/decodable-implementations.json +++ b/docs/data/documentation/bigint/biguint/decodable-implementations.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"Decodable Implementations"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/decodable-implementations"]}],"sections":[],"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations"},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)"],"generated":true,"title":"Initializers","anchor":"Initializers"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(from:)":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Decoder","preciseIdentifier":"s:s7DecoderP","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(from:)","title":"init(from:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations","interfaceLanguage":"swift"},"metadata":{"role":"collectionGroup","roleHeading":"API Collection","title":"Decodable Implementations","modules":[{"name":"BigInt"}]},"topicSections":[{"anchor":"Initializers","title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)"],"generated":true}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/decodable-implementations"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(from:)":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP","text":"Decoder"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","title":"init(from:)","url":"\/documentation\/bigint\/biguint\/init(from:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/decrement(shiftedby:).json b/docs/data/documentation/bigint/biguint/decrement(shiftedby:).json index fded73d..e312f88 100644 --- a/docs/data/documentation/bigint/biguint/decrement(shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/decrement(shiftedby:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Decrement this integer by one."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","interfaceLanguage":"swift"},"metadata":{"role":"symbol","symbolKind":"method","externalID":"s:6BigInt0A4UIntV9decrement9shiftedByySi_tF","title":"decrement(shiftedBy:)","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"decrement","kind":"identifier"},{"text":"(","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":")"}],"extendedModule":"BigInt","roleHeading":"Instance Method"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"decrement","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"shiftedBy"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" = 0)","kind":"text"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","type":"heading","level":2},{"content":[{"type":"paragraph","inlineContent":[{"text":"!isZero","type":"text"}]}],"style":"note","type":"aside","name":"Requires"},{"name":"Complexity","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"O(count)","type":"text"}]}]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/decrement(shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/decrement(shiftedBy:)":{"url":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"decrement"},{"kind":"text","text":"("},{"text":"shiftedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","title":"decrement(shiftedBy:)","abstract":[{"type":"text","text":"Decrement this integer by one."}]}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"role":"symbol","roleHeading":"Instance Method","title":"decrement(shiftedBy:)","externalID":"s:6BigInt0A4UIntV9decrement9shiftedByySi_tF","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"decrement","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":")","kind":"text"}],"symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"mutating"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"decrement","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"shiftedBy"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" = 0)","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"content":[{"inlineContent":[{"text":"!isZero","type":"text"}],"type":"paragraph"}],"style":"note","type":"aside","name":"Requires"},{"style":"note","name":"Complexity","content":[{"inlineContent":[{"text":"O(count)","type":"text"}],"type":"paragraph"}],"type":"aside"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/decrement(shiftedby:)"]}],"sections":[],"abstract":[{"type":"text","text":"Decrement this integer by one."}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/decrement(shiftedBy:)":{"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/decrement(shiftedBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"decrement"},{"text":"(","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"decrement(shiftedBy:)","url":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","role":"symbol","abstract":[{"type":"text","text":"Decrement this integer by one."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/description.json b/docs/data/documentation/bigint/biguint/description.json index ec2f2de..589edf7 100644 --- a/docs/data/documentation/bigint/biguint/description.json +++ b/docs/data/documentation/bigint/biguint/description.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","sections":[],"abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations"]]},"metadata":{"roleHeading":"Instance Property","symbolKind":"property","role":"symbol","externalID":"s:6BigInt0A4UIntV11descriptionSSvp","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"description","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"modules":[{"name":"BigInt"}],"title":"description","extendedModule":"BigInt"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/CustomStringConvertible-Implementations":{"url":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","type":"topic","kind":"article","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","title":"CustomStringConvertible Implementations","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/description":{"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description","title":"description","url":"\/documentation\/bigint\/biguint\/description","abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"kind":"symbol"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations"]]},"abstract":[{"text":"Return the decimal representation of this integer.","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/description"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Instance Property","externalID":"s:6BigInt0A4UIntV11descriptionSSvp","extendedModule":"BigInt","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"description","kind":"identifier"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"}],"role":"symbol","title":"description"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/CustomStringConvertible-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomStringConvertible-Implementations","url":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","role":"collectionGroup","title":"CustomStringConvertible Implementations","abstract":[],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/description":{"fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"description"},{"kind":"text","text":": "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"title":"description","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/description","abstract":[{"type":"text","text":"Return the decimal representation of this integer."}],"url":"\/documentation\/bigint\/biguint\/description"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/directmultiplicationlimit.json b/docs/data/documentation/bigint/biguint/directmultiplicationlimit.json index 6d14ecf..c348586 100644 --- a/docs/data/documentation/bigint/biguint/directmultiplicationlimit.json +++ b/docs/data/documentation/bigint/biguint/directmultiplicationlimit.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"directMultiplicationLimit","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"metadata":{"modules":[{"name":"BigInt"}],"title":"directMultiplicationLimit","symbolKind":"property","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"directMultiplicationLimit","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"role":"symbol","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV25directMultiplicationLimitSivpZ","roleHeading":"Type Property"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/directmultiplicationlimit"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit"},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/directMultiplicationLimit":{"url":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","type":"topic","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"directMultiplicationLimit"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit","title":"directMultiplicationLimit","abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"let","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"directMultiplicationLimit"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"title":"directMultiplicationLimit","externalID":"s:6BigInt0A4UIntV25directMultiplicationLimitSivpZ","roleHeading":"Type Property","symbolKind":"property","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"let","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"directMultiplicationLimit"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/directmultiplicationlimit"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/directMultiplicationLimit":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/directMultiplicationLimit","abstract":[{"type":"text","text":"Multiplication switches to an asymptotically better recursive algorithm when arguments have more words than this limit."}],"url":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","title":"directMultiplicationLimit","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"let"},{"kind":"text","text":" "},{"text":"directMultiplicationLimit","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/distance(to:).json b/docs/data/documentation/bigint/biguint/distance(to:).json index a7f17b1..de58ff8 100644 --- a/docs/data/documentation/bigint/biguint/distance(to:).json +++ b/docs/data/documentation/bigint/biguint/distance(to:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"distance"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}]}],"kind":"declarations"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"abstract":[{"type":"text","text":"Returns the (potentially negative) difference between "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"code":"other","type":"codeVoice"},{"text":" as a ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"text":". Never traps.","type":"text"}],"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"externalID":"s:6BigInt0A4UIntV8distance2toA2AVAC_tF","title":"distance(to:)","roleHeading":"Instance Method","extendedModule":"BigInt","symbolKind":"method","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/distance(to:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","kind":"article","title":"Strideable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/strideable-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/distance(to:)":{"title":"distance(to:)","kind":"symbol","abstract":[{"type":"text","text":"Returns the (potentially negative) difference between "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"other"},{"text":" as a ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":". Never traps."}],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","url":"\/documentation\/bigint\/biguint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","abstract":[{"text":"Returns the (potentially negative) difference between ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"other"},{"text":" as a ","type":"text"},{"code":"BigInt","type":"codeVoice"},{"type":"text","text":". Never traps."}],"metadata":{"role":"symbol","externalID":"s:6BigInt0A4UIntV8distance2toA2AVAC_tF","modules":[{"name":"BigInt"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"distance"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"}],"extendedModule":"BigInt","title":"distance(to:)","roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"distance"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/distance(to:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/distance(to:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"abstract":[{"type":"text","text":"Returns the (potentially negative) difference between "},{"type":"codeVoice","code":"self"},{"text":" and ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" as a ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":". Never traps."}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","type":"topic","title":"distance(to:)","url":"\/documentation\/bigint\/biguint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"title":"Strideable Implementations","role":"collectionGroup","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","url":"\/documentation\/bigint\/biguint\/strideable-implementations","abstract":[]},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/encodable-implementations.json b/docs/data/documentation/bigint/biguint/encodable-implementations.json index b400946..20a230d 100644 --- a/docs/data/documentation/bigint/biguint/encodable-implementations.json +++ b/docs/data/documentation/bigint/biguint/encodable-implementations.json @@ -1 +1 @@ -{"sections":[],"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"topicSections":[{"title":"Instance Methods","anchor":"Instance-Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)"]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/encodable-implementations"]}],"metadata":{"modules":[{"name":"BigInt"}],"title":"Encodable Implementations","role":"collectionGroup","roleHeading":"API Collection"},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/encode(to:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"kind":"text","text":": any "},{"preciseIdentifier":"s:s7EncoderP","kind":"typeIdentifier","text":"Encoder"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"encode(to:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)","role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/encode(to:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/encodable-implementations"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"article","schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"Encodable Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"sections":[],"topicSections":[{"anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)"],"generated":true,"title":"Instance Methods"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/encode(to:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/encode(to:)","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","preciseIdentifier":"s:s7EncoderP","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/encode(to:).json b/docs/data/documentation/bigint/biguint/encode(to:).json index e72345a..88206e8 100644 --- a/docs/data/documentation/bigint/biguint/encode(to:).json +++ b/docs/data/documentation/bigint/biguint/encode(to:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Encodable.encode(to:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/encode(to:)"]}],"metadata":{"externalID":"s:6BigInt0A4UIntV6encode2toys7Encoder_p_tKF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"encode","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"to"},{"text":": any ","kind":"text"},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"extendedModule":"BigInt","role":"symbol","title":"encode(to:)","roleHeading":"Instance Method","modules":[{"name":"BigInt"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"encoder"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","text":"Encoder","preciseIdentifier":"s:s7EncoderP"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/encode(to:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"kind":"text","text":": any "},{"preciseIdentifier":"s:s7EncoderP","kind":"typeIdentifier","text":"Encoder"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"title":"encode(to:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)","role":"symbol","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/encode(to:)"},"doc://BigInt/documentation/BigInt/BigUInt/Encodable-Implementations":{"role":"collectionGroup","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","url":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)","interfaceLanguage":"swift"},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Encodable.encode(to:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"kind":"text","text":" "},{"text":"encoder","kind":"internalParam"},{"text":": any ","kind":"text"},{"preciseIdentifier":"s:s7EncoderP","text":"Encoder","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/encode(to:)"]}],"metadata":{"externalID":"s:6BigInt0A4UIntV6encode2toys7Encoder_p_tKF","roleHeading":"Instance Method","role":"symbol","title":"encode(to:)","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"encode","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7EncoderP","text":"Encoder"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"extendedModule":"BigInt","symbolKind":"method"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/encode(to:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/encode(to:)","title":"encode(to:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"encode"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Encoder","preciseIdentifier":"s:s7EncoderP","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/encode(to:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Encodable-Implementations":{"role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Encodable-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/equatable-implementations.json b/docs/data/documentation/bigint/biguint/equatable-implementations.json index d4587a2..fc1b6ec 100644 --- a/docs/data/documentation/bigint/biguint/equatable-implementations.json +++ b/docs/data/documentation/bigint/biguint/equatable-implementations.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"title":"Equatable Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/equatable-implementations"]}],"sections":[],"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations","interfaceLanguage":"swift"},"topicSections":[{"anchor":"Operators","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw"],"title":"Operators"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-8cdci":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","abstract":[],"title":"!=(_:_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-5amrc":{"type":"topic","url":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","abstract":[],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"==(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-892yw":{"type":"topic","url":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"text":" is equal to ","type":"text"},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"==(_:_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw"}}} \ No newline at end of file +{"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw"],"title":"Operators","anchor":"Operators"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Equatable-Implementations"},"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"Equatable Implementations"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/equatable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-892yw":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-892yw","title":"==(_:_:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"==","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Return true iff "},{"type":"codeVoice","code":"a"},{"type":"text","text":" is equal to "},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"url":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/!=(_:_:)-8cdci":{"url":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/!=(_:_:)-8cdci","title":"!=(_:_:)","abstract":[],"fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"!=","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"type":"topic","kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/==(_:_:)-5amrc":{"url":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","type":"topic","abstract":[],"title":"==(_:_:)","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"=="},{"kind":"text","text":" "},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/==(_:_:)-5amrc"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations.json b/docs/data/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations.json index 21babcf..f3a3e38 100644 --- a/docs/data/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations.json +++ b/docs/data/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","interfaceLanguage":"swift"},"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"topicSections":[{"anchor":"Initializers","title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70"]}],"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-2i1o":{"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","kind":"symbol","role":"symbol","title":"init(extendedGraphemeClusterLiteral:)","abstract":[],"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"text":" is ","type":"text"},{"code":"Self.StringLiteralType","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-68n70":{"abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","interfaceLanguage":"swift"},"topicSections":[{"title":"Initializers","anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70"],"generated":true}],"kind":"article","sections":[],"metadata":{"title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-68n70":{"title":"init(extendedGraphemeClusterLiteral:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"Initialize a new big integer from an extended grapheme cluster."},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-2i1o":{"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","role":"symbol","abstract":[],"title":"init(extendedGraphemeClusterLiteral:)","kind":"symbol","type":"topic","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"ExtendedGraphemeClusterLiteralType","type":"codeVoice"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/expressiblebyintegerliteral-implementations.json b/docs/data/documentation/bigint/biguint/expressiblebyintegerliteral-implementations.json index 3d998b1..9e39dba 100644 --- a/docs/data/documentation/bigint/biguint/expressiblebyintegerliteral-implementations.json +++ b/docs/data/documentation/bigint/biguint/expressiblebyintegerliteral-implementations.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"modules":[{"name":"BigInt"}],"title":"ExpressibleByIntegerLiteral Implementations","roleHeading":"API Collection","role":"collectionGroup"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)"],"generated":true,"title":"Initializers","anchor":"Initializers"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/biguint\/init(integerliteral:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"integerLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)","title":"init(integerLiteral:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"roleHeading":"API Collection","role":"collectionGroup","title":"ExpressibleByIntegerLiteral Implementations","modules":[{"name":"BigInt"}]},"sections":[],"kind":"article","topicSections":[{"title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)"],"anchor":"Initializers"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(integerLiteral:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(integerliteral:)","title":"init(integerLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"integerLiteral"},{"text":": ","kind":"text"},{"text":"UInt64","kind":"typeIdentifier","preciseIdentifier":"s:s6UInt64V"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/expressiblebystringliteral-implementations.json b/docs/data/documentation/bigint/biguint/expressiblebystringliteral-implementations.json index c8792c5..f55fecd 100644 --- a/docs/data/documentation/bigint/biguint/expressiblebystringliteral-implementations.json +++ b/docs/data/documentation/bigint/biguint/expressiblebystringliteral-implementations.json @@ -1 +1 @@ -{"metadata":{"roleHeading":"API Collection","role":"collectionGroup","title":"ExpressibleByStringLiteral Implementations","modules":[{"name":"BigInt"}]},"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)"],"anchor":"Initializers","generated":true,"title":"Initializers"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(stringLiteral:)":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"stringLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s17StringLiteralTypea","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/biguint\/init(stringliteral:)","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The string must contain only decimal digits."}],"title":"init(stringLiteral:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)"}}} \ No newline at end of file +{"sections":[],"topicSections":[{"anchor":"Initializers","title":"Initializers","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"ExpressibleByStringLiteral Implementations","role":"collectionGroup"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(stringLiteral:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)","type":"topic","title":"init(stringLiteral:)","url":"\/documentation\/bigint\/biguint\/init(stringliteral:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"The string must contain only decimal digits."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations.json b/docs/data/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations.json index a063b67..83364e1 100644 --- a/docs/data/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations.json +++ b/docs/data/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"article","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations"},"metadata":{"role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"ExpressibleByUnicodeScalarLiteral Implementations"},"topicSections":[{"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)"],"generated":true,"anchor":"Initializers"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(unicodeScalarLiteral:)":{"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)","type":"topic","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"text":"The scalar must represent a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar"},{"text":")","kind":"text"}],"title":"init(unicodeScalarLiteral:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"ExpressibleByUnicodeScalarLiteral Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","interfaceLanguage":"swift"},"sections":[],"topicSections":[{"anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)"],"title":"Initializers","generated":true}],"kind":"article","references":{"doc://BigInt/documentation/BigInt/BigUInt/init(unicodeScalarLiteral:)":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","type":"topic","kind":"symbol","role":"symbol","title":"init(unicodeScalarLiteral:)","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The scalar must represent a decimal digit."}],"url":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/formatted().json b/docs/data/documentation/bigint/biguint/formatted().json index 2318c30..9f3da12 100644 --- a/docs/data/documentation/bigint/biguint/formatted().json +++ b/docs/data/documentation/bigint/biguint/formatted().json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"}],"role":"symbol","title":"formatted()","roleHeading":"Instance Method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"15.0","deprecated":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"macOS","introducedAt":"12.0"},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"15.0","beta":false},{"unavailable":false,"deprecated":false,"name":"watchOS","introducedAt":"8.0","beta":false}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE9formattedSSyF::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.formatted()","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/formatted()"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/formatted()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()","role":"symbol","title":"formatted()","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"}],"url":"\/documentation\/bigint\/biguint\/formatted()"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()"},"metadata":{"title":"formatted()","role":"symbol","externalID":"s:Sz10FoundationE9formattedSSyF::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"symbolKind":"method","extendedModule":"Swift","roleHeading":"Instance Method","platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"name":"macOS","introducedAt":"12.0","unavailable":false,"deprecated":false,"beta":false},{"deprecated":false,"introducedAt":"15.0","beta":false,"name":"tvOS","unavailable":false},{"name":"watchOS","introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.formatted()"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/formatted()"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/formatted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"}],"kind":"symbol","title":"formatted()","url":"\/documentation\/bigint\/biguint\/formatted()","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted()"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/formatted(_:)-2d6da.json b/docs/data/documentation/bigint/biguint/formatted(_:)-2d6da.json index d33e095..1d068b5 100644 --- a/docs/data/documentation/bigint/biguint/formatted(_:)-2d6da.json +++ b/docs/data/documentation/bigint/biguint/formatted(_:)-2d6da.json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","kind":"typeIdentifier","text":"FormatInput"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"FormatStyle","preciseIdentifier":"s:10Foundation11FormatStyleP","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"symbolKind":"method","platforms":[{"introducedAt":"15.0","unavailable":false,"beta":false,"name":"iOS","deprecated":false},{"deprecated":false,"name":"macOS","beta":false,"introducedAt":"12.0","unavailable":false},{"beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS"},{"introducedAt":"8.0","deprecated":false,"unavailable":false,"beta":false,"name":"watchOS"}],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","title":"formatted(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.formatted(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/formatted(_:)-2d6da"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-2d6da":{"abstract":[],"type":"topic","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"format"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation11FormatStyleP","kind":"typeIdentifier","text":"FormatStyle"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"role":"symbol","symbolKind":"method","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0"},{"deprecated":false,"name":"macOS","introducedAt":"12.0","beta":false,"unavailable":false},{"introducedAt":"15.0","deprecated":false,"unavailable":false,"name":"tvOS","beta":false},{"deprecated":false,"name":"watchOS","unavailable":false,"beta":false,"introducedAt":"8.0"}],"externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"formatted(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"extendedModule":"Swift","roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/formatted(_:)-2d6da"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.formatted(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-2d6da":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-2d6da","type":"topic","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/formatted(_:)-9ivms.json b/docs/data/documentation/bigint/biguint/formatted(_:)-9ivms.json index 874166a..a145bc3 100644 --- a/docs/data/documentation/bigint/biguint/formatted(_:)-9ivms.json +++ b/docs/data/documentation/bigint/biguint/formatted(_:)-9ivms.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.formatted(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/formatted(_:)-9ivms"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"format"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"FormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatInput","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"]}]}],"metadata":{"extendedModule":"Swift","platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"15.0","beta":false},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"12.0","deprecated":false},{"deprecated":false,"beta":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS"},{"deprecated":false,"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"roleHeading":"Instance Method","title":"formatted(_:)","role":"symbol","externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__AA0C5StyleRd__Sz0C5InputRpd__lF::SYNTHESIZED::s:6BigInt0A4UIntV"},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-9ivms":{"abstract":[],"type":"topic","kind":"symbol","title":"formatted(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","url":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.formatted(_:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"FormatStyle","preciseIdentifier":"s:10Foundation11FormatStyleP"},{"kind":"text","text":", "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","text":"FormatInput"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/formatted(_:)-9ivms"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput"}],"title":"formatted(_:)","role":"symbol","externalID":"s:Sz10FoundationE9formattedy12FormatOutputQyd__qd__AA0C5StyleRd__Sz0C5InputRpd__lF::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","symbolKind":"method","platforms":[{"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false,"beta":false},{"unavailable":false,"introducedAt":"12.0","deprecated":false,"beta":false,"name":"macOS"},{"deprecated":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS","beta":false},{"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"8.0","beta":false}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/formatted(_:)-9ivms":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/formatted(_:)-9ivms","title":"formatted(_:)","url":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/greatestcommondivisor(with:).json b/docs/data/documentation/bigint/biguint/greatestcommondivisor(with:).json index ace661e..a551281 100644 --- a/docs/data/documentation/bigint/biguint/greatestcommondivisor(with:).json +++ b/docs/data/documentation/bigint/biguint/greatestcommondivisor(with:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"roleHeading":"Instance Method","extendedModule":"BigInt","title":"greatestCommonDivisor(with:)","externalID":"s:6BigInt0A4UIntV21greatestCommonDivisor4withA2C_tF","modules":[{"name":"BigInt"}],"role":"symbol","symbolKind":"method"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Returns the greatest common divisor of ","type":"text"},{"code":"self","type":"codeVoice"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"style":"note","type":"aside","name":"Complexity","content":[{"inlineContent":[{"text":"O(count^2) where count = max(self.count, b.count)","type":"text"}],"type":"paragraph"}]}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/greatestCommonDivisor(with:)":{"title":"greatestCommonDivisor(with:)","url":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"greatestCommonDivisor"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"b"},{"text":".","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"code":"b","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"with"},{"kind":"text","text":" "},{"kind":"internalParam","text":"b"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"}],"platforms":["macOS"]}]},{"content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"name":"Complexity","style":"note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(count^2) where count = max(self.count, b.count)"}],"type":"paragraph"}]}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV21greatestCommonDivisor4withA2C_tF","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"greatestCommonDivisor"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"title":"greatestCommonDivisor(with:)","extendedModule":"BigInt","symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/greatestCommonDivisor(with:)":{"role":"symbol","title":"greatestCommonDivisor(with:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/greatestCommonDivisor(with:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"greatestCommonDivisor","kind":"identifier"},{"kind":"text","text":"("},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","type":"topic","abstract":[{"type":"text","text":"Returns the greatest common divisor of "},{"code":"self","type":"codeVoice"},{"text":" and ","type":"text"},{"code":"b","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/hash(into:).json b/docs/data/documentation/bigint/biguint/hash(into:).json index f4799c1..52fefde 100644 --- a/docs/data/documentation/bigint/biguint/hash(into:).json +++ b/docs/data/documentation/bigint/biguint/hash(into:).json @@ -1 +1 @@ -{"metadata":{"title":"hash(into:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:s6HasherV","text":"Hasher","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV4hash4intoys6HasherVz_tF","extendedModule":"BigInt","roleHeading":"Instance Method","modules":[{"name":"BigInt"}]},"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"hash","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"into"},{"kind":"text","text":" "},{"text":"hasher","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","interfaceLanguage":"swift"},"abstract":[{"text":"Append this ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":" to the specified hasher."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/hash(into:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/hash(into:)":{"url":"\/documentation\/bigint\/biguint\/hash(into:)","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","title":"hash(into:)","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"text":" to the specified hasher.","type":"text"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Hashable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","kind":"article","title":"Hashable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/hashable-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Method","title":"hash(into:)","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"kind":"text","text":"("},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"kind":"text","text":")"}],"externalID":"s:6BigInt0A4UIntV4hash4intoys6HasherVz_tF"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/hash(into:)"]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"hasher","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"Hasher","kind":"typeIdentifier","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Append this "},{"type":"codeVoice","code":"BigUInt"},{"text":" to the specified hasher.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/hash(into:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","url":"\/documentation\/bigint\/biguint\/hash(into:)","role":"symbol","type":"topic","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":" to the specified hasher."}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"hash(into:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Hashable-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","url":"\/documentation\/bigint\/biguint\/hashable-implementations","role":"collectionGroup","title":"Hashable Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/hashable-implementations.json b/docs/data/documentation/bigint/biguint/hashable-implementations.json index 01ab130..87cb938 100644 --- a/docs/data/documentation/bigint/biguint/hashable-implementations.json +++ b/docs/data/documentation/bigint/biguint/hashable-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"title":"Hashable Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"topicSections":[{"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)"],"anchor":"Instance-Methods","generated":true}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/hashable-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/hash(into:)":{"url":"\/documentation\/bigint\/biguint\/hash(into:)","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","title":"hash(into:)","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"text":" to the specified hasher.","type":"text"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"hash"},{"text":"(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Hasher","preciseIdentifier":"s:s6HasherV"},{"text":")","kind":"text"}],"role":"symbol"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/hashable-implementations"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Hashable-Implementations","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"Hashable Implementations","role":"collectionGroup"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)"],"title":"Instance Methods","anchor":"Instance-Methods"}],"kind":"article","schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/hash(into:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/hash(into:)","url":"\/documentation\/bigint\/biguint\/hash(into:)","role":"symbol","type":"topic","abstract":[{"text":"Append this ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":" to the specified hasher."}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"hash","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"into"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Hasher","preciseIdentifier":"s:s6HasherV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"hash(into:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init()-nmq2.json b/docs/data/documentation/bigint/biguint/init()-nmq2.json index a3dec3a..85c5103 100644 --- a/docs/data/documentation/bigint/biguint/init()-nmq2.json +++ b/docs/data/documentation/bigint/biguint/init()-nmq2.json @@ -1 +1 @@ -{"kind":"symbol","metadata":{"externalID":"s:SzsExycfc::SYNTHESIZED::s:6BigInt0A4UIntV","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Initializer","title":"init()","extendedModule":"Swift","role":"symbol","symbolKind":"init"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init()","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init()-nmq2"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"()","kind":"text"}],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/init()-nmq2":{"abstract":[],"type":"topic","kind":"symbol","title":"init()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","url":"\/documentation\/bigint\/biguint\/init()-nmq2","fragments":[{"kind":"identifier","text":"init"},{"text":"()","kind":"text"}],"role":"symbol"}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init()"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/init()-nmq2"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"()","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"init()","roleHeading":"Initializer","externalID":"s:SzsExycfc::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"init","role":"symbol"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init()-nmq2":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-nmq2","title":"init()","url":"\/documentation\/bigint\/biguint\/init()-nmq2","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init()-sbkm.json b/docs/data/documentation/bigint/biguint/init()-sbkm.json index 43e0c86..2a93067 100644 --- a/docs/data/documentation/bigint/biguint/init()-sbkm.json +++ b/docs/data/documentation/bigint/biguint/init()-sbkm.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"()","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Initializer","title":"init()","fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"externalID":"s:6BigInt0A4UIntVACycfc","symbolKind":"init","role":"symbol"},"abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init()-sbkm"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/init()-sbkm":{"url":"\/documentation\/bigint\/biguint\/init()-sbkm","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"()"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","title":"init()","abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/init()-sbkm"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"role":"symbol","symbolKind":"init","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"externalID":"s:6BigInt0A4UIntVACycfc","title":"init()"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"()","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init()-sbkm":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/init()-sbkm","title":"init()","abstract":[{"type":"text","text":"Initializes a new BigUInt with value 0."}],"fragments":[{"text":"init","kind":"identifier"},{"text":"()","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init()-sbkm","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:)-33kch.json b/docs/data/documentation/bigint/biguint/init(_:)-33kch.json index 1ded559..631ac5b 100644 --- a/docs/data/documentation/bigint/biguint/init(_:)-33kch.json +++ b/docs/data/documentation/bigint/biguint/init(_:)-33kch.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:)-33kch"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer"}],"metadata":{"title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigInt0A4UIntVyACSWcfc","role":"symbol","symbolKind":"init","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","extendedModule":"BigInt"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"buffer","kind":"internalParam"},{"kind":"text","text":": "},{"text":"UnsafeRawBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SW"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-33kch":{"abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer","type":"text"}],"title":"init(_:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-33kch","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","role":"symbol","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"buffer","kind":"internalParam"},{"kind":"text","text":": "},{"text":"UnsafeRawBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SW"},{"kind":"text","text":")"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch"},"metadata":{"externalID":"s:6BigInt0A4UIntVyACSWcfc","roleHeading":"Initializer","title":"init(_:)","extendedModule":"BigInt","role":"symbol","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:)-33kch"]}],"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-33kch":{"kind":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SW","text":"UnsafeRawBufferPointer","kind":"typeIdentifier"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-33kch","url":"\/documentation\/bigint\/biguint\/init(_:)-33kch","role":"symbol","title":"init(_:)","type":"topic","abstract":[{"text":"Initialize a BigInt from bytes accessed from an UnsafeRawBufferPointer","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:)-4ohlu.json b/docs/data/documentation/bigint/biguint/init(_:)-4ohlu.json index d6fbe36..63be18f 100644 --- a/docs/data/documentation/bigint/biguint/init(_:)-4ohlu.json +++ b/docs/data/documentation/bigint/biguint/init(_:)-4ohlu.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:)-4ohlu"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"text":".","type":"text"},{"type":"text","text":" "},{"text":"The data is assumed to be in network (big-endian) byte order.","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu"},"metadata":{"symbolKind":"init","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"Data","preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","modules":[{"name":"BigInt"}],"title":"init(_:)","externalID":"s:6BigInt0A4UIntVyAC10Foundation4DataVcfc","roleHeading":"Initializer"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"data"},{"kind":"text","text":": "},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-4ohlu":{"role":"symbol","abstract":[{"text":"Initializes an integer from the bits stored inside a piece of ","type":"text"},{"code":"Data","type":"codeVoice"},{"type":"text","text":"."},{"text":" ","type":"text"},{"text":"The data is assumed to be in network (big-endian) byte order.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","kind":"symbol","title":"init(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:10Foundation4DataV","text":"Data","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"data"},{"text":": ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:)-4ohlu"]}],"metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntVyAC10Foundation4DataVcfc","symbolKind":"init","roleHeading":"Initializer","extendedModule":"BigInt","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"},{"kind":"text","text":")"}],"role":"symbol"},"abstract":[{"text":"Initializes an integer from the bits stored inside a piece of ","type":"text"},{"type":"codeVoice","code":"Data"},{"type":"text","text":"."},{"type":"text","text":" "},{"type":"text","text":"The data is assumed to be in network (big-endian) byte order."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-4ohlu":{"abstract":[{"type":"text","text":"Initializes an integer from the bits stored inside a piece of "},{"type":"codeVoice","code":"Data"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"The data is assumed to be in network (big-endian) byte order.","type":"text"}],"title":"init(_:)","url":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-4ohlu","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"},{"kind":"text","text":")"}],"type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:)-5gw2a.json b/docs/data/documentation/bigint/biguint/init(_:)-5gw2a.json index 9fa1158..6e9b71a 100644 --- a/docs/data/documentation/bigint/biguint/init(_:)-5gw2a.json +++ b/docs/data/documentation/bigint/biguint/init(_:)-5gw2a.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:)-5gw2a"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a"},"metadata":{"extendedModule":"BigInt","role":"symbol","title":"init(_:)","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntVyACxcSzRzlufc","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-5gw2a":{"type":"topic","role":"symbol","title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","kind":"symbol","abstract":[],"fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:)-5gw2a"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:)"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"metadata":{"extendedModule":"BigInt","symbolKind":"init","roleHeading":"Initializer","title":"init(_:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}],"role":"symbol","externalID":"s:6BigInt0A4UIntVyACxcSzRzlufc"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-5gw2a":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-5gw2a","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a","type":"topic","kind":"symbol","title":"init(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:)-9bhcx.json b/docs/data/documentation/bigint/biguint/init(_:)-9bhcx.json index b35fbe1..43fc14a 100644 --- a/docs/data/documentation/bigint/biguint/init(_:)-9bhcx.json +++ b/docs/data/documentation/bigint/biguint/init(_:)-9bhcx.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:)-9bhcx"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","interfaceLanguage":"swift"},"metadata":{"title":"init(_:)","role":"symbol","roleHeading":"Initializer","symbolKind":"init","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntVyACxcSBRzlufc","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-9bhcx":{"url":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(_:)"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:)-9bhcx"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryFloatingPoint","preciseIdentifier":"s:SB"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"metadata":{"role":"symbol","roleHeading":"Initializer","externalID":"s:6BigInt0A4UIntVyACxcSBRzlufc","title":"init(_:)","symbolKind":"init","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"extendedModule":"BigInt"},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:)-9bhcx":{"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:)-9bhcx","title":"init(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf.json b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf.json index 1dab2e0..071ea77 100644 --- a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf.json +++ b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) ","kind":"text"},{"text":"throws","kind":"keyword"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Initializer","title":"init(_:format:lenient:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleVyxGSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"unavailable":false,"name":"macOS","introducedAt":"12.0","deprecated":false,"beta":false},{"deprecated":false,"name":"tvOS","unavailable":false,"introducedAt":"15.0","beta":false},{"beta":false,"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"8.0"}],"symbolKind":"init","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-5zsmf":{"abstract":[],"type":"topic","kind":"symbol","title":"init(_:format:lenient:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"role":"symbol"}}} \ No newline at end of file +{"metadata":{"symbolKind":"init","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">, "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleVyxGSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","title":"init(_:format:lenient:)","platforms":[{"introducedAt":"15.0","unavailable":false,"name":"iOS","deprecated":false,"beta":false},{"introducedAt":"12.0","unavailable":false,"name":"macOS","beta":false,"deprecated":false},{"name":"tvOS","introducedAt":"15.0","unavailable":false,"beta":false,"deprecated":false},{"name":"watchOS","beta":false,"introducedAt":"8.0","deprecated":false,"unavailable":false}],"extendedModule":"Swift","roleHeading":"Initializer"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":" = true) "},{"text":"throws","kind":"keyword"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-5zsmf":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-5zsmf","type":"topic","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">, ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-846lz.json b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-846lz.json index d6efc0b..cbb73dc 100644 --- a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-846lz.json +++ b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-846lz.json @@ -1 +1 @@ -{"metadata":{"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV7PercentVyx_GSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","platforms":[{"beta":false,"unavailable":false,"name":"iOS","deprecated":false,"introducedAt":"15.0"},{"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"12.0","beta":false},{"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"tvOS","beta":false},{"introducedAt":"8.0","deprecated":false,"beta":false,"unavailable":false,"name":"watchOS"}],"extendedModule":"Swift","roleHeading":"Initializer","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"symbolKind":"init","role":"symbol","title":"init(_:format:lenient:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) ","kind":"text"},{"text":"throws","kind":"keyword"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-846lz":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","kind":"symbol","title":"init(_:format:lenient:)","role":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":", "},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"text":"Percent","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(_:format:lenient:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">."},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","kind":"typeIdentifier","text":"Percent"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) "},{"kind":"keyword","text":"throws"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz"},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">.","kind":"text"},{"text":"Percent","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","unavailable":false,"deprecated":false},{"unavailable":false,"deprecated":false,"introducedAt":"12.0","beta":false,"name":"macOS"},{"unavailable":false,"deprecated":false,"name":"tvOS","introducedAt":"15.0","beta":false},{"name":"watchOS","unavailable":false,"deprecated":false,"introducedAt":"8.0","beta":false}],"externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV7PercentVyx_GSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","extendedModule":"Swift","title":"init(_:format:lenient:)","roleHeading":"Initializer","symbolKind":"init"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-846lz":{"title":"init(_:format:lenient:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-846lz","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"kind":"text","text":": "},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV7PercentV","text":"Percent"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-8wged.json b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-8wged.json index b9abb20..910931b 100644 --- a/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-8wged.json +++ b/docs/data/documentation/bigint/biguint/init(_:format:lenient:)-8wged.json @@ -1 +1 @@ -{"metadata":{"title":"init(_:format:lenient:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier","text":"IntegerFormatStyle"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"text":"Currency","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV"},{"kind":"text","text":", "},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"role":"symbol","platforms":[{"unavailable":false,"beta":false,"introducedAt":"15.0","deprecated":false,"name":"iOS"},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0"},{"beta":false,"name":"tvOS","deprecated":false,"introducedAt":"15.0","unavailable":false},{"introducedAt":"8.0","name":"watchOS","unavailable":false,"beta":false,"deprecated":false}],"roleHeading":"Initializer","externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV8CurrencyVyx_GSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","extendedModule":"Swift","symbolKind":"init"},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"text":", ","kind":"text"},{"text":"format","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","kind":"typeIdentifier","text":"Currency"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) ","kind":"text"},{"kind":"keyword","text":"throws"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-8wged":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"init(_:format:lenient:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","abstract":[],"role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","text":"Currency","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV"},{"text":", ","kind":"text"},{"text":"lenient","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" = true) "},{"text":"throws","kind":"keyword"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:format:lenient:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged"},"metadata":{"platforms":[{"unavailable":false,"name":"iOS","introducedAt":"15.0","beta":false,"deprecated":false},{"deprecated":false,"name":"macOS","introducedAt":"12.0","unavailable":false,"beta":false},{"beta":false,"unavailable":false,"introducedAt":"15.0","name":"tvOS","deprecated":false},{"beta":false,"introducedAt":"8.0","deprecated":false,"name":"watchOS","unavailable":false}],"role":"symbol","title":"init(_:format:lenient:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:SS","text":"String","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"text":"IntegerFormatStyle","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">.","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"extendedModule":"Swift","externalID":"s:Sz10FoundationE_6format7lenientxSS_AA18IntegerFormatStyleV8CurrencyVyx_GSbtKcfc::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"init","roleHeading":"Initializer","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:format:lenient:)-8wged":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:format:lenient:)-8wged","type":"topic","title":"init(_:format:lenient:)","url":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"kind":"text","text":", "},{"kind":"externalParam","text":"format"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:10Foundation18IntegerFormatStyleV","text":"IntegerFormatStyle","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">.","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation18IntegerFormatStyleV8CurrencyV","text":"Currency"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"lenient"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:radix:).json b/docs/data/documentation/bigint/biguint/init(_:radix:).json index 9d36428..fd3f651 100644 --- a/docs/data/documentation/bigint/biguint/init(_:radix:).json +++ b/docs/data/documentation/bigint/biguint/init(_:radix:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:radix:)"]}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"text","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" = 10) "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"StringProtocol","preciseIdentifier":"s:Sy"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"unorderedList","items":[{"content":[{"inlineContent":[{"text":"Parameter ","type":"text"},{"type":"codeVoice","code":"text"},{"type":"text","text":": A string consisting of characters corresponding to numerals in the given radix. (0-9, a-z, A-Z)"}],"type":"paragraph"}]},{"content":[{"type":"paragraph","inlineContent":[{"text":"Parameter ","type":"text"},{"type":"codeVoice","code":"radix"},{"type":"text","text":": The base of the number system to use, or 10 if unspecified."}]}]}]},{"content":[{"inlineContent":[{"type":"text","text":""},{"code":"radix > 1 && radix < 36","type":"codeVoice"}],"type":"paragraph"}],"type":"aside","name":"Requires","style":"note"}]}],"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"text":" ","type":"text"},{"text":"letters from the English alphabet.","type":"text"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"title":"init(_:radix:)","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV_5radixACSgx_SitcSyRzlufc","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:radix:)":{"title":"init(_:radix:)","url":"\/documentation\/bigint\/biguint\/init(_:radix:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"code":"9","type":"codeVoice"},{"text":" are represented by","type":"text"},{"type":"text","text":" "},{"type":"text","text":"letters from the English alphabet."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"metadata":{"externalID":"s:6BigInt0A4UIntV_5radixACSgx_SitcSyRzlufc","roleHeading":"Initializer","role":"symbol","title":"init(_:radix:)","modules":[{"name":"BigInt"}],"fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"radix"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"extendedModule":"BigInt","symbolKind":"init"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:radix:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"text":" ","type":"text"},{"type":"text","text":"letters from the English alphabet."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"?<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"text","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" = 10) ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sy","text":"StringProtocol","kind":"typeIdentifier"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"unorderedList","items":[{"content":[{"inlineContent":[{"text":"Parameter ","type":"text"},{"code":"text","type":"codeVoice"},{"text":": A string consisting of characters corresponding to numerals in the given radix. (0-9, a-z, A-Z)","type":"text"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"type":"text","text":"Parameter "},{"code":"radix","type":"codeVoice"},{"text":": The base of the number system to use, or 10 if unspecified.","type":"text"}],"type":"paragraph"}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"radix > 1 && radix < 36"}]}],"name":"Requires","type":"aside","style":"note"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:radix:)":{"url":"\/documentation\/bigint\/biguint\/init(_:radix:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:radix:)","abstract":[{"type":"text","text":"Initialize a big integer from an ASCII representation in a given radix. Numerals above "},{"type":"codeVoice","code":"9"},{"type":"text","text":" are represented by"},{"type":"text","text":" "},{"text":"letters from the English alphabet.","type":"text"}],"title":"init(_:radix:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":", "},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:strategy:)-3pf4s.json b/docs/data/documentation/bigint/biguint/init(_:strategy:)-3pf4s.json index 8c93ff2..370a760 100644 --- a/docs/data/documentation/bigint/biguint/init(_:strategy:)-3pf4s.json +++ b/docs/data/documentation/bigint/biguint/init(_:strategy:)-3pf4s.json @@ -1 +1 @@ -{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP","text":"ParseStrategy"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"ParseOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","kind":"typeIdentifier","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"extendedModule":"Swift","roleHeading":"Initializer","title":"init(_:strategy:)","symbolKind":"init","platforms":[{"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"iOS","beta":false},{"deprecated":false,"introducedAt":"12.0","unavailable":false,"beta":false,"name":"macOS"},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"15.0","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"name":"watchOS","introducedAt":"8.0"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKcAA0C8StrategyRd__Sz0C6OutputRpd__lufc::SYNTHESIZED::s:6BigInt0A4UIntV","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-3pf4s":{"type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s","kind":"symbol","title":"init(_:strategy:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","interfaceLanguage":"swift"},"metadata":{"title":"init(_:strategy:)","platforms":[{"deprecated":false,"beta":false,"name":"iOS","introducedAt":"15.0","unavailable":false},{"unavailable":false,"deprecated":false,"introducedAt":"12.0","beta":false,"name":"macOS"},{"deprecated":false,"introducedAt":"15.0","unavailable":false,"beta":false,"name":"tvOS"},{"introducedAt":"8.0","unavailable":false,"beta":false,"name":"watchOS","deprecated":false}],"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"symbolKind":"init","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","extendedModule":"Swift","externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKcAA0C8StrategyRd__Sz0C6OutputRpd__lufc::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Initializer"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"ParseStrategy","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa","text":"ParseOutput"},{"text":" : ","kind":"text"},{"text":"BinaryInteger","preciseIdentifier":"s:Sz","kind":"typeIdentifier"}]}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-3pf4s":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-3pf4s","kind":"symbol","title":"init(_:strategy:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"role":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(_:strategy:)-on2v.json b/docs/data/documentation/bigint/biguint/init(_:strategy:)-on2v.json index 3164963..0765555 100644 --- a/docs/data/documentation/bigint/biguint/init(_:strategy:)-on2v.json +++ b/docs/data/documentation/bigint/biguint/init(_:strategy:)-on2v.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(_:strategy:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"Swift","platforms":[{"introducedAt":"15.0","unavailable":false,"deprecated":false,"beta":false,"name":"iOS"},{"name":"macOS","deprecated":false,"introducedAt":"12.0","unavailable":false,"beta":false},{"unavailable":false,"name":"tvOS","deprecated":false,"beta":false,"introducedAt":"15.0"},{"unavailable":false,"introducedAt":"8.0","deprecated":false,"name":"watchOS","beta":false}],"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKc0C6OutputQyd__RszAA0C8StrategyRd__lufc::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"init","roleHeading":"Initializer","title":"init(_:strategy:)"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"ParseOutput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"text":"ParseStrategy","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP"}]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-on2v":{"url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","kind":"typeIdentifier","text":"ParseInput"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"strategy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"title":"init(_:strategy:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"role":"symbol","roleHeading":"Initializer","platforms":[{"deprecated":false,"introducedAt":"15.0","name":"iOS","unavailable":false,"beta":false},{"deprecated":false,"name":"macOS","introducedAt":"12.0","unavailable":false,"beta":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"beta":false,"name":"watchOS","unavailable":false,"introducedAt":"8.0","deprecated":false}],"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:Sz10FoundationE_8strategyx10ParseInputQyd___qd__tKc0C6OutputQyd__RszAA0C8StrategyRd__lufc::SYNTHESIZED::s:6BigInt0A4UIntV","title":"init(_:strategy:)","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(_:strategy:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa","text":"ParseInput"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ParseOutput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B6OutputQa"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation13ParseStrategyP","kind":"typeIdentifier","text":"ParseStrategy"}],"platforms":["macOS"]}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/init(_:strategy:)-on2v":{"title":"init(_:strategy:)","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"ParseInput","preciseIdentifier":"s:10Foundation13ParseStrategyP0B5InputQa"},{"text":", ","kind":"text"},{"text":"strategy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(_:strategy:)-on2v","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(clamping:).json b/docs/data/documentation/bigint/biguint/init(clamping:).json index d242e68..7461730 100644 --- a/docs/data/documentation/bigint/biguint/init(clamping:).json +++ b/docs/data/documentation/bigint/biguint/init(clamping:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(clamping:)"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.init(clamping:)"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"metadata":{"roleHeading":"Initializer","title":"init(clamping:)","role":"symbol","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV8clampingACx_tcSzRzlufc","symbolKind":"init"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(clamping:)":{"abstract":[],"type":"topic","title":"init(clamping:)","url":"\/documentation\/bigint\/biguint\/init(clamping:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","kind":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"kind":"text","text":" "},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(clamping:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"extendedModule":"BigInt","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Initializer","externalID":"s:6BigInt0A4UIntV8clampingACx_tcSzRzlufc","title":"init(clamping:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(clamping:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(clamping:)":{"title":"init(clamping:)","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(clamping:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"clamping","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(clamping:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(exactly:)-3yz6v.json b/docs/data/documentation/bigint/biguint/init(exactly:)-3yz6v.json index b484b86..d304baa 100644 --- a/docs/data/documentation/bigint/biguint/init(exactly:)-3yz6v.json +++ b/docs/data/documentation/bigint/biguint/init(exactly:)-3yz6v.json @@ -1 +1 @@ -{"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"title":"init(exactly:)","modules":[{"name":"BigInt"}],"symbolKind":"init","extendedModule":"BigInt","roleHeading":"Initializer","externalID":"s:6BigInt0A4UIntV7exactlyACSgx_tcSBRzlufc","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.init(exactly:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-3yz6v":{"url":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"title":"init(exactly:)"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.init(exactly:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"exactly","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:SB","kind":"typeIdentifier","text":"BinaryFloatingPoint"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt"}],"title":"init(exactly:)","externalID":"s:6BigInt0A4UIntV7exactlyACSgx_tcSBRzlufc","role":"symbol","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"roleHeading":"Initializer","extendedModule":"BigInt"},"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-3yz6v":{"title":"init(exactly:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"?<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-3yz6v","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(exactly:)-8jpdx.json b/docs/data/documentation/bigint/biguint/init(exactly:)-8jpdx.json index df1d10f..797afd5 100644 --- a/docs/data/documentation/bigint/biguint/init(exactly:)-8jpdx.json +++ b/docs/data/documentation/bigint/biguint/init(exactly:)-8jpdx.json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Numeric.init(exactly:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx","interfaceLanguage":"swift"},"metadata":{"title":"init(exactly:)","role":"symbol","externalID":"s:6BigInt0A4UIntV7exactlyACSgx_tcSzRzlufc","extendedModule":"BigInt","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"exactly","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt"}],"symbolKind":"init","roleHeading":"Initializer"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":" "},{"kind":"internalParam","text":"source"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-8jpdx":{"fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"exactly"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx","kind":"symbol","title":"init(exactly:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Numeric-Implementations":{"role":"collectionGroup","kind":"article","type":"topic","url":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx"]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Numeric.init(exactly:)","type":"codeVoice"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations"]]},"metadata":{"externalID":"s:6BigInt0A4UIntV7exactlyACSgx_tcSzRzlufc","extendedModule":"BigInt","roleHeading":"Initializer","title":"init(exactly:)","symbolKind":"init","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"exactly"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-8jpdx":{"url":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx","abstract":[],"type":"topic","title":"init(exactly:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Numeric-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","kind":"article","type":"topic","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o.json b/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o.json index 1c87ecc..be5024f 100644 --- a/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o.json +++ b/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","text":"StringLiteralType","kind":"typeIdentifier"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"ExpressibleByExtendedGraphemeClusterLiteral.init(extendedGraphemeClusterLiteral:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"metadata":{"externalID":"s:s26ExpressibleByStringLiteralPs0cD4TypeQz023ExtendedGraphemeClusterdE0RtzrlE08extendedghD0xAF_tcfc::SYNTHESIZED::s:6BigInt0A4UIntV","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","text":"StringLiteralType"},{"kind":"text","text":")"}],"title":"init(extendedGraphemeClusterLiteral:)","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"ExtendedGraphemeClusterLiteralType","type":"codeVoice"},{"text":" is ","type":"text"},{"type":"codeVoice","code":"Self.StringLiteralType"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"symbolKind":"init","roleHeading":"Initializer","role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-2i1o":{"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","kind":"symbol","role":"symbol","title":"init(extendedGraphemeClusterLiteral:)","abstract":[],"conformance":{"constraints":[{"type":"codeVoice","code":"ExtendedGraphemeClusterLiteralType"},{"text":" is ","type":"text"},{"code":"Self.StringLiteralType","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","kind":"article","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"metadata":{"roleHeading":"Initializer","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"StringLiteralType","preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa"},{"text":")","kind":"text"}],"title":"init(extendedGraphemeClusterLiteral:)","extendedModule":"Swift","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"ExtendedGraphemeClusterLiteralType","type":"codeVoice"},{"type":"text","text":" is "},{"code":"Self.StringLiteralType","type":"codeVoice"},{"type":"text","text":"."}]},"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:s26ExpressibleByStringLiteralPs0cD4TypeQz023ExtendedGraphemeClusterdE0RtzrlE08extendedghD0xAF_tcfc::SYNTHESIZED::s:6BigInt0A4UIntV"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"ExpressibleByExtendedGraphemeClusterLiteral.init(extendedGraphemeClusterLiteral:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations","kind":"article","role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-2i1o":{"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","role":"symbol","abstract":[],"title":"init(extendedGraphemeClusterLiteral:)","kind":"symbol","type":"topic","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"ExtendedGraphemeClusterLiteralType","type":"codeVoice"},{"type":"text","text":" is "},{"type":"codeVoice","code":"Self.StringLiteralType"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-2i1o","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:s26ExpressibleByStringLiteralP0cD4TypeQa","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70.json b/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70.json index 22b7e8f..856719f 100644 --- a/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70.json +++ b/docs/data/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Initialize a new big integer from an extended grapheme cluster."},{"type":"text","text":" "},{"type":"text","text":"The cluster must consist of a decimal digit."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","interfaceLanguage":"swift"},"metadata":{"title":"init(extendedGraphemeClusterLiteral:)","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","externalID":"s:6BigInt0A4UIntV30extendedGraphemeClusterLiteralACSS_tcfc","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"extendedModule":"BigInt","role":"symbol"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","kind":"article","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-68n70":{"abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70","title":"init(extendedGraphemeClusterLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"typeIdentifier"},{"kind":"text","text":")"}],"kind":"symbol","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations"]]},"abstract":[{"text":"Initialize a new big integer from an extended grapheme cluster.","type":"text"},{"text":" ","type":"text"},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"metadata":{"symbolKind":"init","title":"init(extendedGraphemeClusterLiteral:)","extendedModule":"BigInt","roleHeading":"Initializer","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SS","text":"String"},{"kind":"text","text":")"}],"role":"symbol","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV30extendedGraphemeClusterLiteralACSS_tcfc"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"extendedGraphemeClusterLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"String","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByExtendedGraphemeClusterLiteral-Implementations":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByExtendedGraphemeClusterLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations","kind":"article","role":"collectionGroup","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(extendedGraphemeClusterLiteral:)-68n70":{"title":"init(extendedGraphemeClusterLiteral:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(extendedGraphemeClusterLiteral:)-68n70","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"extendedGraphemeClusterLiteral"},{"kind":"text","text":": "},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","abstract":[{"type":"text","text":"Initialize a new big integer from an extended grapheme cluster."},{"type":"text","text":" "},{"text":"The cluster must consist of a decimal digit.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(from:).json b/docs/data/documentation/bigint/biguint/init(from:).json index 3b37416..cb033ad 100644 --- a/docs/data/documentation/bigint/biguint/init(from:).json +++ b/docs/data/documentation/bigint/biguint/init(from:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"text":" ","kind":"text"},{"text":"decoder","kind":"internalParam"},{"kind":"text","text":": any "},{"preciseIdentifier":"s:s7DecoderP","kind":"typeIdentifier","text":"Decoder"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations"]]},"metadata":{"roleHeading":"Initializer","symbolKind":"init","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":": any ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP","text":"Decoder"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}],"externalID":"s:6BigInt0A4UIntV4fromACs7Decoder_p_tKcfc","extendedModule":"BigInt","role":"symbol","title":"init(from:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(from:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Decodable.init(from:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(from:)":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"from","kind":"externalParam"},{"text":": any ","kind":"text"},{"text":"Decoder","preciseIdentifier":"s:s7DecoderP","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(from:)","title":"init(from:)"},"doc://BigInt/documentation/BigInt/BigUInt/Decodable-Implementations":{"role":"collectionGroup","type":"topic","title":"Decodable Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/decodable-implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"text":"decoder","kind":"internalParam"},{"text":": any ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP","text":"Decoder"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"languages":["swift"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Decodable.init(from:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(from:)"]}],"kind":"symbol","metadata":{"roleHeading":"Initializer","title":"init(from:)","externalID":"s:6BigInt0A4UIntV4fromACs7Decoder_p_tKcfc","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":": any "},{"preciseIdentifier":"s:s7DecoderP","kind":"typeIdentifier","text":"Decoder"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"}]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Decodable-Implementations":{"kind":"article","role":"collectionGroup","title":"Decodable Implementations","abstract":[],"url":"\/documentation\/bigint\/biguint\/decodable-implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Decodable-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(from:)":{"type":"topic","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":": any "},{"kind":"typeIdentifier","preciseIdentifier":"s:s7DecoderP","text":"Decoder"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(from:)","title":"init(from:)","url":"\/documentation\/bigint\/biguint\/init(from:)","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(integerliteral:).json b/docs/data/documentation/bigint/biguint/init(integerliteral:).json index c879421..9e0f82d 100644 --- a/docs/data/documentation/bigint/biguint/init(integerliteral:).json +++ b/docs/data/documentation/bigint/biguint/init(integerliteral:).json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s6UInt64V","text":"UInt64","kind":"typeIdentifier"},{"kind":"text","text":")"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations"]]},"metadata":{"symbolKind":"init","role":"symbol","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV14integerLiteralACs6UInt64V_tcfc","title":"init(integerLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s6UInt64V","kind":"typeIdentifier","text":"UInt64"},{"text":")","kind":"text"}],"roleHeading":"Initializer"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(integerliteral:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)"},"abstract":[{"text":"Initialize a new big integer from an integer literal.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByIntegerLiteral-Implementations":{"kind":"article","url":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","type":"topic","role":"collectionGroup","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(integerLiteral:)":{"url":"\/documentation\/bigint\/biguint\/init(integerliteral:)","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"integerLiteral"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"UInt64","preciseIdentifier":"s:s6UInt64V"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)","title":"init(integerLiteral:)","role":"symbol"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"integerLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s6UInt64V","text":"UInt64"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)"},"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Initializer","title":"init(integerLiteral:)","role":"symbol","externalID":"s:6BigInt0A4UIntV14integerLiteralACs6UInt64V_tcfc","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"integerLiteral"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s6UInt64V","text":"UInt64","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(integerliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(integerLiteral:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/init(integerliteral:)","title":"init(integerLiteral:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"integerLiteral"},{"text":": ","kind":"text"},{"text":"UInt64","kind":"typeIdentifier","preciseIdentifier":"s:s6UInt64V"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Initialize a new big integer from an integer literal."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(integerLiteral:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByIntegerLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByIntegerLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","role":"collectionGroup","title":"ExpressibleByIntegerLiteral Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(stringliteral:).json b/docs/data/documentation/bigint/biguint/init(stringliteral:).json index 904f23a..66fa95b 100644 --- a/docs/data/documentation/bigint/biguint/init(stringliteral:).json +++ b/docs/data/documentation/bigint/biguint/init(stringliteral:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"stringLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea","text":"StringLiteralType"},{"text":")","kind":"text"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)"},"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(stringliteral:)"]}],"abstract":[{"type":"text","text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length."},{"type":"text","text":" "},{"text":"The string must contain only decimal digits.","type":"text"}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Initializer","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"text":")","kind":"text"}],"extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV13stringLiteralACSS_tcfc","title":"init(stringLiteral:)","symbolKind":"init"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(stringLiteral:)":{"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"stringLiteral","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s17StringLiteralTypea","kind":"typeIdentifier","text":"StringLiteralType"},{"kind":"text","text":")"}],"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/biguint\/init(stringliteral:)","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The string must contain only decimal digits."}],"title":"init(stringLiteral:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByStringLiteral-Implementations":{"title":"ExpressibleByStringLiteral Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","abstract":[],"kind":"article","role":"collectionGroup","type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"text":"stringLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"StringLiteralType","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/init(stringliteral:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"title":"init(stringLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s17StringLiteralTypea","text":"StringLiteralType","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:6BigInt0A4UIntV13stringLiteralACSS_tcfc","extendedModule":"BigInt"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length."},{"type":"text","text":" "},{"type":"text","text":"The string must contain only decimal digits."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByStringLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByStringLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","role":"collectionGroup","title":"ExpressibleByStringLiteral Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/init(stringLiteral:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(stringLiteral:)","type":"topic","title":"init(stringLiteral:)","url":"\/documentation\/bigint\/biguint\/init(stringliteral:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"stringLiteral"},{"kind":"text","text":": "},{"text":"StringLiteralType","kind":"typeIdentifier","preciseIdentifier":"s:s17StringLiteralTypea"},{"kind":"text","text":")"}],"kind":"symbol","abstract":[{"text":"Initialize a new big integer from a decimal number represented by a string literal of arbitrary length.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"The string must contain only decimal digits."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(truncatingifneeded:).json b/docs/data/documentation/bigint/biguint/init(truncatingifneeded:).json index 48e96aa..93f8eab 100644 --- a/docs/data/documentation/bigint/biguint/init(truncatingifneeded:).json +++ b/docs/data/documentation/bigint/biguint/init(truncatingifneeded:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(truncatingifneeded:)"]}],"metadata":{"roleHeading":"Initializer","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:6BigInt0A4UIntV18truncatingIfNeededACx_tcSzRzlufc","symbolKind":"init","title":"init(truncatingIfNeeded:)","extendedModule":"BigInt"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(truncatingIfNeeded:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"source","kind":"internalParam"},{"kind":"text","text":": "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sz","text":"BinaryInteger"}],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(truncatingIfNeeded:)":{"abstract":[],"type":"topic","kind":"symbol","title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)","url":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"truncatingIfNeeded"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}],"role":"symbol"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.init(truncatingIfNeeded:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(truncatingifneeded:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"source"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"BinaryInteger","preciseIdentifier":"s:Sz"}],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"title":"init(truncatingIfNeeded:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV18truncatingIfNeededACx_tcSzRzlufc","role":"symbol","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"symbolKind":"init"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(truncatingIfNeeded:)":{"kind":"symbol","title":"init(truncatingIfNeeded:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(truncatingIfNeeded:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"truncatingIfNeeded","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":")"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(unicodescalarliteral:).json b/docs/data/documentation/bigint/biguint/init(unicodescalarliteral:).json index 17349bd..8d1cd2e 100644 --- a/docs/data/documentation/bigint/biguint/init(unicodescalarliteral:).json +++ b/docs/data/documentation/bigint/biguint/init(unicodescalarliteral:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","interfaceLanguage":"swift"},"abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"The scalar must represent a decimal digit."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar"},{"text":")","kind":"text"}],"title":"init(unicodeScalarLiteral:)","roleHeading":"Initializer","symbolKind":"init","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV20unicodeScalarLiteralACs7UnicodeO0E0V_tcfc"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara","kind":"typeIdentifier"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","kind":"article","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(unicodeScalarLiteral:)":{"kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)","type":"topic","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"text":"The scalar must represent a decimal digit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar"},{"text":")","kind":"text"}],"title":"init(unicodeScalarLiteral:)"}}} \ No newline at end of file +{"metadata":{"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s13UnicodeScalara","text":"UnicodeScalar","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV20unicodeScalarLiteralACs7UnicodeO0E0V_tcfc","role":"symbol","title":"init(unicodeScalarLiteral:)","roleHeading":"Initializer","extendedModule":"BigInt","symbolKind":"init","modules":[{"name":"BigInt"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)"]}],"abstract":[{"type":"text","text":"Initialize a new big integer from a Unicode scalar."},{"text":" ","type":"text"},{"text":"The scalar must represent a decimal digit.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"unicodeScalarLiteral","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara","kind":"typeIdentifier"},{"text":")","kind":"text"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(unicodeScalarLiteral:)":{"fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"unicodeScalarLiteral"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"UnicodeScalar","preciseIdentifier":"s:s13UnicodeScalara"},{"text":")","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(unicodeScalarLiteral:)","type":"topic","kind":"symbol","role":"symbol","title":"init(unicodeScalarLiteral:)","abstract":[{"text":"Initialize a new big integer from a Unicode scalar.","type":"text"},{"type":"text","text":" "},{"type":"text","text":"The scalar must represent a decimal digit."}],"url":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)"},"doc://BigInt/documentation/BigInt/BigUInt/ExpressibleByUnicodeScalarLiteral-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/ExpressibleByUnicodeScalarLiteral-Implementations","url":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations","role":"collectionGroup","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(words:)-2g41y.json b/docs/data/documentation/bigint/biguint/init(words:)-2g41y.json index ecdfdd9..884d6f7 100644 --- a/docs/data/documentation/bigint/biguint/init(words:)-2g41y.json +++ b/docs/data/documentation/bigint/biguint/init(words:)-2g41y.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(words:)-2g41y"]}],"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Words"},{"kind":"text","text":">("},{"text":"words","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Words"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Words"},{"kind":"text","text":" : "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":" == ","kind":"text"},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Words"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"words"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Words"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV5wordsACx_tcSTRzSu7ElementRtzlufc","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Initializer","symbolKind":"init","title":"init(words:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-2g41y":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/init(words:)-2g41y","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Words","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"words"},{"text":": ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","role":"symbol","title":"init(words:)"}}} \ No newline at end of file +{"kind":"symbol","metadata":{"roleHeading":"Initializer","role":"symbol","extendedModule":"BigInt","symbolKind":"init","title":"init(words:)","fragments":[{"text":"init","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Words"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"words"},{"text":": ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV5wordsACx_tcSTRzSu7ElementRtzlufc","modules":[{"name":"BigInt"}]},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(words:)-2g41y"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"text":"<","kind":"text"},{"text":"Words","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"words","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Words","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Words"},{"text":" : ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"Words","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"UInt","kind":"typeIdentifier","preciseIdentifier":"s:Su"}]}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-2g41y":{"kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-2g41y","role":"symbol","title":"init(words:)","type":"topic","fragments":[{"kind":"identifier","text":"init"},{"text":"<","kind":"text"},{"text":"Words","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Words","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(words:)-2g41y"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/init(words:)-33w61.json b/docs/data/documentation/bigint/biguint/init(words:)-33w61.json index 7501c21..9bb8545 100644 --- a/docs/data/documentation/bigint/biguint/init(words:)-33w61.json +++ b/docs/data/documentation/bigint/biguint/init(words:)-33w61.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"words","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},{"text":"])","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(words:)-33w61"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"init(words:)","symbolKind":"init","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"words"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"text":"])","kind":"text"}],"externalID":"s:6BigInt0A4UIntV5wordsACSaySuG_tcfc","modules":[{"name":"BigInt"}],"roleHeading":"Initializer"},"abstract":[{"type":"text","text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant."}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-33w61":{"role":"symbol","abstract":[{"text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61","kind":"symbol","title":"init(words:)","type":"topic","url":"\/documentation\/bigint\/biguint\/init(words:)-33w61","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"words","kind":"externalParam"},{"kind":"text","text":": ["},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"kind":"text","text":"])"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61"},"sections":[],"abstract":[{"type":"text","text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"symbolKind":"init","role":"symbol","title":"init(words:)","roleHeading":"Initializer","modules":[{"name":"BigInt"}],"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"words","kind":"externalParam"},{"kind":"text","text":": ["},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"text":"Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier"},{"kind":"text","text":"])"}],"externalID":"s:6BigInt0A4UIntV5wordsACSaySuG_tcfc"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/init(words:)-33w61"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"words","kind":"externalParam"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":"])","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(words:)-33w61":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(words:)-33w61","url":"\/documentation\/bigint\/biguint\/init(words:)-33w61","abstract":[{"type":"text","text":"Initializes a new BigUInt with the specified digits. The digits are ordered from least to most significant."}],"title":"init(words:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"words"},{"text":": [","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":"])","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/inverse(_:).json b/docs/data/documentation/bigint/biguint/inverse(_:).json index 11a52bd..1d34ecb 100644 --- a/docs/data/documentation/bigint/biguint/inverse(_:).json +++ b/docs/data/documentation/bigint/biguint/inverse(_:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/inverse(_:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","metadata":{"roleHeading":"Instance Method","title":"inverse(_:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"inverse","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"?"}],"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV7inverseyACSgACF"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Returns the "},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true},{"text":",","type":"text"},{"type":"text","text":" "},{"type":"text","text":"or "},{"code":"nil","type":"codeVoice"},{"text":" if there is no such number.","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inverse","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"modulus"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":"?","kind":"text"}]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Return Value","level":2,"anchor":"return-value","type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"If "},{"type":"codeVoice","code":"gcd(self, modulus) == 1"},{"type":"text","text":", the value returned is an integer "},{"type":"codeVoice","code":"a < modulus"},{"type":"text","text":" such that "},{"type":"codeVoice","code":"(a * self) % modulus == 1"},{"type":"text","text":". If "},{"code":"self","type":"codeVoice"},{"type":"text","text":" and "},{"code":"modulus","type":"codeVoice"},{"text":" aren’t coprime, the return value is ","type":"text"},{"code":"nil","type":"codeVoice"},{"text":".","type":"text"}]}]},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"name":"Requires","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"Modulus > 1","type":"text"}]}]},{"style":"note","name":"Complexity","type":"aside","content":[{"inlineContent":[{"text":"O(count^3)","type":"text"}],"type":"paragraph"}]}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"titleInlineContent":[{"text":"multiplicative inverse of this integer in modulo ","type":"text"},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" arithmetic"}],"title":"multiplicative inverse of this integer in modulo modulus arithmetic","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},"doc://BigInt/documentation/BigInt/BigUInt/inverse(_:)":{"title":"inverse(_:)","kind":"symbol","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/inverse(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"?"}],"abstract":[{"type":"text","text":"Returns the "},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},{"text":",","type":"text"},{"text":" ","type":"text"},{"text":"or ","type":"text"},{"code":"nil","type":"codeVoice"},{"type":"text","text":" if there is no such number."}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"type":"text","text":"Returns the "},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers"},{"text":",","type":"text"},{"type":"text","text":" "},{"text":"or ","type":"text"},{"code":"nil","type":"codeVoice"},{"type":"text","text":" if there is no such number."}],"metadata":{"symbolKind":"method","modules":[{"name":"BigInt"}],"title":"inverse(_:)","extendedModule":"BigInt","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"inverse","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"?"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV7inverseyACSgACF"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"inverse","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"modulus","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"type":"heading","level":2,"text":"Return Value","anchor":"return-value"},{"inlineContent":[{"type":"text","text":"If "},{"type":"codeVoice","code":"gcd(self, modulus) == 1"},{"type":"text","text":", the value returned is an integer "},{"type":"codeVoice","code":"a < modulus"},{"type":"text","text":" such that "},{"type":"codeVoice","code":"(a * self) % modulus == 1"},{"type":"text","text":". If "},{"code":"self","type":"codeVoice"},{"type":"text","text":" and "},{"code":"modulus","type":"codeVoice"},{"text":" aren’t coprime, the return value is ","type":"text"},{"code":"nil","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}]},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Modulus > 1"}]}],"name":"Requires","style":"note"},{"content":[{"type":"paragraph","inlineContent":[{"text":"O(count^3)","type":"text"}]}],"style":"note","name":"Complexity","type":"aside"}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/inverse(_:)"]}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/inverse(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"inverse"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/inverse(_:)","url":"\/documentation\/bigint\/biguint\/inverse(_:)","role":"symbol","title":"inverse(_:)","type":"topic","abstract":[{"text":"Returns the ","type":"text"},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","isActive":true,"type":"reference"},{"type":"text","text":","},{"type":"text","text":" "},{"type":"text","text":"or "},{"code":"nil","type":"codeVoice"},{"type":"text","text":" if there is no such number."}]},"https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Extended_Euclidean_algorithm#Modular_integers","titleInlineContent":[{"type":"text","text":"multiplicative inverse of this integer in modulo "},{"type":"codeVoice","code":"modulus"},{"type":"text","text":" arithmetic"}],"title":"multiplicative inverse of this integer in modulo modulus arithmetic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/ismultiple(of:).json b/docs/data/documentation/bigint/biguint/ismultiple(of:).json index 240f7d1..4bb2421 100644 --- a/docs/data/documentation/bigint/biguint/ismultiple(of:).json +++ b/docs/data/documentation/bigint/biguint/ismultiple(of:).json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/ismultiple(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.isMultiple(of:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SzsE10isMultiple2ofSbx_tF::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","title":"isMultiple(of:)","role":"symbol"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/isMultiple(of:)":{"url":"\/documentation\/bigint\/biguint\/ismultiple(of:)","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"isMultiple(of:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","interfaceLanguage":"swift"},"metadata":{"title":"isMultiple(of:)","roleHeading":"Instance Method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isMultiple","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","externalID":"s:SzsE10isMultiple2ofSbx_tF::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.isMultiple(of:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isMultiple","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/ismultiple(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/isMultiple(of:)":{"title":"isMultiple(of:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isMultiple"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isMultiple(of:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/ismultiple(of:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/isprime(rounds:).json b/docs/data/documentation/bigint/biguint/isprime(rounds:).json index 345351c..86e3886 100644 --- a/docs/data/documentation/bigint/biguint/isprime(rounds:).json +++ b/docs/data/documentation/bigint/biguint/isprime(rounds:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/isprime(rounds:)"]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)"},"abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"text":"rounds","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" = 10) -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]}]},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This function performs a probabilistic "},{"type":"reference","isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test"},{"text":", consisting of ","type":"text"},{"type":"codeVoice","code":"rounds"},{"text":" iterations,","type":"text"},{"type":"text","text":" "},{"type":"text","text":"each calculating the strong probable prime test for a random base. The number of rounds is 10 by default,"},{"type":"text","text":" "},{"text":"but you may specify your own choice.","type":"text"}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"To speed things up, the function checks if "},{"code":"self","type":"codeVoice"},{"text":" is divisible by the first few prime numbers before","type":"text"},{"type":"text","text":" "},{"type":"text","text":"diving into (slower) Miller-Rabin testing."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"Also, when "},{"type":"codeVoice","code":"self"},{"type":"text","text":" is less than 82 bits wide, "},{"type":"codeVoice","code":"isPrime"},{"text":" does a deterministic test that is guaranteed to","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"return a correct result."}]}],"kind":"content"}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Method","title":"isPrime(rounds:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rounds"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"externalID":"s:6BigInt0A4UIntV7isPrime6roundsSbSi_tF","symbolKind":"method","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"https://en.wikipedia.org/wiki/Miller–Rabin_primality_test":{"titleInlineContent":[{"type":"text","text":"Miller-Rabin Primality Test"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","type":"link","title":"Miller-Rabin Primality Test"},"doc://BigInt/documentation/BigInt/BigUInt/isPrime(rounds:)":{"url":"\/documentation\/bigint\/biguint\/isprime(rounds:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","title":"isPrime(rounds:)","abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/isprime(rounds:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"text":"(","kind":"text"},{"text":"rounds","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" = 10) -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"type":"paragraph","inlineContent":[{"text":"This function performs a probabilistic ","type":"text"},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test"},{"text":", consisting of ","type":"text"},{"type":"codeVoice","code":"rounds"},{"type":"text","text":" iterations,"},{"type":"text","text":" "},{"type":"text","text":"each calculating the strong probable prime test for a random base. The number of rounds is 10 by default,"},{"text":" ","type":"text"},{"type":"text","text":"but you may specify your own choice."}]},{"type":"paragraph","inlineContent":[{"type":"text","text":"To speed things up, the function checks if "},{"type":"codeVoice","code":"self"},{"text":" is divisible by the first few prime numbers before","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"diving into (slower) Miller-Rabin testing."}]},{"inlineContent":[{"text":"Also, when ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" is less than 82 bits wide, "},{"code":"isPrime","type":"codeVoice"},{"type":"text","text":" does a deterministic test that is guaranteed to"},{"type":"text","text":" "},{"text":"return a correct result.","type":"text"}],"type":"paragraph"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","externalID":"s:6BigInt0A4UIntV7isPrime6roundsSbSi_tF","extendedModule":"BigInt","role":"symbol","title":"isPrime(rounds:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isPrime"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"rounds"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"https://en.wikipedia.org/wiki/Miller–Rabin_primality_test":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Miller–Rabin_primality_test","titleInlineContent":[{"text":"Miller-Rabin Primality Test","type":"text"}],"title":"Miller-Rabin Primality Test"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/isPrime(rounds:)":{"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isPrime","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"rounds"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isPrime(rounds:)","url":"\/documentation\/bigint\/biguint\/isprime(rounds:)","role":"symbol","title":"isPrime(rounds:)","type":"topic","abstract":[{"text":"Returns true if this integer is probably prime. Returns false if this integer is definitely not prime.","type":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/issigned-7t7ce.json b/docs/data/documentation/bigint/biguint/issigned-7t7ce.json index 93991aa..cfeb49b 100644 --- a/docs/data/documentation/bigint/biguint/issigned-7t7ce.json +++ b/docs/data/documentation/bigint/biguint/issigned-7t7ce.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"metadata":{"externalID":"s:6BigInt0A4UIntV8isSignedSbvpZ","symbolKind":"property","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Type Property","title":"isSigned","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/issigned-7t7ce"]}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BinaryInteger.isSigned"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-7t7ce":{"url":"\/documentation\/bigint\/biguint\/issigned-7t7ce","abstract":[],"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"title":"isSigned"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/issigned-7t7ce"]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.isSigned","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"roleHeading":"Type Property","symbolKind":"property","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isSigned","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","extendedModule":"BigInt","title":"isSigned","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV8isSignedSbvpZ"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-7t7ce":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-7t7ce","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"isSigned","abstract":[],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/issigned-7t7ce","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/issigned-996wk.json b/docs/data/documentation/bigint/biguint/issigned-996wk.json index 8f15b15..655bac7 100644 --- a/docs/data/documentation/bigint/biguint/issigned-996wk.json +++ b/docs/data/documentation/bigint/biguint/issigned-996wk.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"]]},"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"roleHeading":"Type Property","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:SUsE8isSignedSbvpZ::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"property","role":"symbol","title":"isSigned"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"UnsignedInteger.isSigned"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/issigned-996wk"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isSigned","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/isSigned-996wk":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","abstract":[],"title":"isSigned","type":"topic","url":"\/documentation\/bigint\/biguint\/issigned-996wk"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","abstract":[],"title":"UnsignedInteger Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","type":"topic","role":"collectionGroup","kind":"article"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/issigned-996wk"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"UnsignedInteger.isSigned"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}]}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"symbolKind":"property","role":"symbol","title":"isSigned","roleHeading":"Type Property","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"externalID":"s:SUsE8isSignedSbvpZ::SYNTHESIZED::s:6BigInt0A4UIntV"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/isSigned-996wk":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","title":"isSigned","url":"\/documentation\/bigint\/biguint\/issigned-996wk","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","title":"UnsignedInteger Implementations","abstract":[],"type":"topic","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/isstrongprobableprime(_:).json b/docs/data/documentation/bigint/biguint/isstrongprobableprime(_:).json index baddb68..c510e0a 100644 --- a/docs/data/documentation/bigint/biguint/isstrongprobableprime(_:).json +++ b/docs/data/documentation/bigint/biguint/isstrongprobableprime(_:).json @@ -1 +1 @@ -{"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)"]}],"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"isActive":true,"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","type":"reference"},{"type":"text","text":" for the specified base."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"isStrongProbablePrime","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"base","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isStrongProbablePrime"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"symbolKind":"method","modules":[{"name":"BigInt"}],"title":"isStrongProbablePrime(_:)","extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV21isStrongProbablePrimeySbACF"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"https://en.wikipedia.org/wiki/Probable_prime":{"type":"link","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","title":"strong probable prime test","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt/BigUInt/isStrongProbablePrime(_:)":{"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","isActive":true,"type":"reference"},{"text":" for the specified base.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"kind":"symbol","role":"symbol","type":"topic","title":"isStrongProbablePrime(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},{"text":" for the specified base.","type":"text"}],"metadata":{"symbolKind":"method","extendedModule":"BigInt","title":"isStrongProbablePrime(_:)","externalID":"s:6BigInt0A4UIntV21isStrongProbablePrimeySbACF","roleHeading":"Instance Method","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"isStrongProbablePrime"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isStrongProbablePrime"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"base","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)"]}],"references":{"https://en.wikipedia.org/wiki/Probable_prime":{"title":"strong probable prime test","titleInlineContent":[{"type":"text","text":"strong probable prime test"}],"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime"},"doc://BigInt/documentation/BigInt/BigUInt/isStrongProbablePrime(_:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"isStrongProbablePrime","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isStrongProbablePrime(_:)","url":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","role":"symbol","title":"isStrongProbablePrime(_:)","type":"topic","abstract":[{"type":"text","text":"Returns true iff this integer passes the "},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Probable_prime","isActive":true,"type":"reference"},{"text":" for the specified base.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/iszero.json b/docs/data/documentation/bigint/biguint/iszero.json index babdc88..37d529d 100644 --- a/docs/data/documentation/bigint/biguint/iszero.json +++ b/docs/data/documentation/bigint/biguint/iszero.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/iszero"]}],"metadata":{"title":"isZero","modules":[{"name":"BigInt"}],"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isZero","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV6isZeroSbvp","roleHeading":"Instance Property"},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"content":[{"level":2,"anchor":"discussion","type":"heading","text":"Discussion"},{"type":"aside","name":"Complexity","content":[{"inlineContent":[{"text":"O(1)","type":"text"}],"type":"paragraph"}],"style":"note"}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/isZero":{"role":"symbol","abstract":[{"type":"text","text":"Return true iff this integer is zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","kind":"symbol","title":"isZero","type":"topic","url":"\/documentation\/bigint\/biguint\/iszero","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isZero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/iszero"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"externalID":"s:6BigInt0A4UIntV6isZeroSbvp","title":"isZero","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"isZero","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Property","symbolKind":"property"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","interfaceLanguage":"swift"},"abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isZero","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(1)"}],"type":"paragraph"}],"style":"note","name":"Complexity"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/isZero":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isZero","abstract":[{"text":"Return true iff this integer is zero.","type":"text"}],"url":"\/documentation\/bigint\/biguint\/iszero","title":"isZero","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isZero"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/leadingzerobitcount.json b/docs/data/documentation/bigint/biguint/leadingzerobitcount.json index 634ab77..f470aef 100644 --- a/docs/data/documentation/bigint/biguint/leadingzerobitcount.json +++ b/docs/data/documentation/bigint/biguint/leadingzerobitcount.json @@ -1 +1 @@ -{"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"The number of leading zero bits in the binary representation of this integer in base "},{"type":"codeVoice","code":"2^(Word.bitWidth)"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"This is useful when you need to normalize a ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"text":" such that the top bit of its most significant word is 1.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"leadingZeroBitCount"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}]},{"kind":"content","content":[{"text":"Return Value","level":2,"type":"heading","anchor":"return-value"},{"inlineContent":[{"text":"A value in ","type":"text"},{"type":"codeVoice","code":"0...(Word.bitWidth - 1)"},{"type":"text","text":"."}],"type":"paragraph"}]},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"name":"Note","type":"aside","content":[{"inlineContent":[{"text":"0 is considered to have zero leading zero bits.","type":"text"}],"type":"paragraph"}],"style":"note"},{"name":"See Also","type":"aside","style":"note","content":[{"inlineContent":[{"text":"Width","type":"text"}],"type":"paragraph"}]},{"name":"Complexity","type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(1)"}]}]}],"kind":"content"}],"metadata":{"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV19leadingZeroBitCountSivp","roleHeading":"Instance Property","role":"symbol","title":"leadingZeroBitCount","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"leadingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"modules":[{"name":"BigInt"}]},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/leadingzerobitcount"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/leadingZeroBitCount":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"leadingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"type":"topic","kind":"symbol","role":"symbol","title":"leadingZeroBitCount","url":"\/documentation\/bigint\/biguint\/leadingzerobitcount","abstract":[{"text":"The number of leading zero bits in the binary representation of this integer in base ","type":"text"},{"code":"2^(Word.bitWidth)","type":"codeVoice"},{"type":"text","text":"."},{"type":"text","text":" "},{"text":"This is useful when you need to normalize a ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"text":" such that the top bit of its most significant word is 1.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","interfaceLanguage":"swift"},"metadata":{"title":"leadingZeroBitCount","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV19leadingZeroBitCountSivp","roleHeading":"Instance Property","role":"symbol","symbolKind":"property","modules":[{"name":"BigInt"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"leadingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"type":"text","text":"The number of leading zero bits in the binary representation of this integer in base "},{"type":"codeVoice","code":"2^(Word.bitWidth)"},{"text":".","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"This is useful when you need to normalize a "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":" such that the top bit of its most significant word is 1."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"leadingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}]},{"kind":"content","content":[{"text":"Return Value","level":2,"anchor":"return-value","type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A value in "},{"type":"codeVoice","code":"0...(Word.bitWidth - 1)"},{"text":".","type":"text"}]}]},{"content":[{"level":2,"text":"Discussion","type":"heading","anchor":"discussion"},{"type":"aside","style":"note","name":"Note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0 is considered to have zero leading zero bits."}]}]},{"name":"See Also","type":"aside","style":"note","content":[{"inlineContent":[{"type":"text","text":"Width"}],"type":"paragraph"}]},{"type":"aside","content":[{"inlineContent":[{"text":"O(1)","type":"text"}],"type":"paragraph"}],"style":"note","name":"Complexity"}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/leadingzerobitcount"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/leadingZeroBitCount":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/leadingZeroBitCount","url":"\/documentation\/bigint\/biguint\/leadingzerobitcount","abstract":[{"text":"The number of leading zero bits in the binary representation of this integer in base ","type":"text"},{"type":"codeVoice","code":"2^(Word.bitWidth)"},{"text":".","type":"text"},{"text":" ","type":"text"},{"text":"This is useful when you need to normalize a ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":" such that the top bit of its most significant word is 1."}],"title":"leadingZeroBitCount","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"leadingZeroBitCount","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/magnitude.json b/docs/data/documentation/bigint/biguint/magnitude.json index 9bd9649..78a4a60 100644 --- a/docs/data/documentation/bigint/biguint/magnitude.json +++ b/docs/data/documentation/bigint/biguint/magnitude.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"UnsignedInteger.magnitude"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/magnitude"]}],"metadata":{"externalID":"s:SUsE9magnitudexvp::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol","symbolKind":"property","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"magnitude"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"title":"magnitude"},"sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"magnitude"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","identifier":"doc:\/\/BigInt\/documentation\/BigInt","abstract":[],"role":"collection","type":"topic","kind":"symbol","title":"BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","type":"topic","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"role":"symbol","kind":"symbol","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"BigUInt","kind":"identifier"}],"title":"BigUInt","navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","abstract":[],"title":"UnsignedInteger Implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","type":"topic","role":"collectionGroup","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/magnitude":{"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude","title":"magnitude","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/magnitude"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"UnsignedInteger.magnitude","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"magnitude"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/magnitude"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"kind":"symbol","metadata":{"title":"magnitude","roleHeading":"Instance Property","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:SUsE9magnitudexvp::SYNTHESIZED::s:6BigInt0A4UIntV","symbolKind":"property","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/UnsignedInteger-Implementations":{"url":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","title":"UnsignedInteger Implementations","abstract":[],"type":"topic","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/magnitude":{"kind":"symbol","role":"symbol","title":"magnitude","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude","url":"\/documentation\/bigint\/biguint\/magnitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/multiplied(by:).json b/docs/data/documentation/bigint/biguint/multiplied(by:).json index 5ed93ff..f210cb1 100644 --- a/docs/data/documentation/bigint/biguint/multiplied(by:).json +++ b/docs/data/documentation/bigint/biguint/multiplied(by:).json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","interfaceLanguage":"swift"},"metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"multiplied","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"title":"multiplied(by:)","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV10multiplied2byA2C_tF"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"level":2,"type":"heading","text":"Discussion","anchor":"discussion"},{"name":"Note","style":"note","content":[{"inlineContent":[{"type":"text","text":"This uses the naive O(n^2) multiplication algorithm unless both arguments have more than"},{"type":"text","text":" "},{"type":"codeVoice","code":"BigUInt.directMultiplicationLimit"},{"text":" words.","type":"text"}],"type":"paragraph"}],"type":"aside"},{"name":"Complexity","content":[{"inlineContent":[{"text":"O(n^log2(3))","type":"text"}],"type":"paragraph"}],"style":"note","type":"aside"}],"kind":"content"}],"abstract":[{"type":"text","text":"Multiply this integer by "},{"code":"y","type":"codeVoice"},{"text":" and return the result.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/multiplied(by:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/multiplied(by:)":{"role":"symbol","abstract":[{"type":"text","text":"Multiply this integer by "},{"type":"codeVoice","code":"y"},{"text":" and return the result.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","kind":"symbol","title":"multiplied(by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/multiplied(by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiplied"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","interfaceLanguage":"swift"},"sections":[],"metadata":{"externalID":"s:6BigInt0A4UIntV10multiplied2byA2C_tF","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiplied"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"modules":[{"name":"BigInt"}],"title":"multiplied(by:)","role":"symbol","roleHeading":"Instance Method","extendedModule":"BigInt"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"name":"Note","content":[{"inlineContent":[{"text":"This uses the naive O(n^2) multiplication algorithm unless both arguments have more than","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"BigUInt.directMultiplicationLimit"},{"type":"text","text":" words."}],"type":"paragraph"}],"type":"aside","style":"note"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(n^log2(3))"}]}],"name":"Complexity","style":"note"}]}],"abstract":[{"type":"text","text":"Multiply this integer by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the result."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiplied(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/multiplied(by:)":{"abstract":[{"type":"text","text":"Multiply this integer by "},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(by:)","kind":"symbol","title":"multiplied(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/multiplied(by:)","type":"topic","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/multiplied(byword:).json b/docs/data/documentation/bigint/biguint/multiplied(byword:).json index 2205d5e..2bfbfb5 100644 --- a/docs/data/documentation/bigint/biguint/multiplied(byword:).json +++ b/docs/data/documentation/bigint/biguint/multiplied(byword:).json @@ -1 +1 @@ -{"sections":[],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"multiplied","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"roleHeading":"Instance Method","extendedModule":"BigInt","title":"multiplied(byWord:)","externalID":"s:6BigInt0A4UIntV10multiplied6byWordACSu_tF","role":"symbol","modules":[{"name":"BigInt"}],"symbolKind":"method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiplied(byword:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Multiply this big integer by a single Word, and return the result.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"multiplied","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"byWord"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"languages":["swift"]}]},{"kind":"content","content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(byWord:)":{"role":"symbol","abstract":[{"type":"text","text":"Multiply this big integer by a single Word, and return the result."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","kind":"symbol","title":"multiplied(byWord:)","type":"topic","url":"\/documentation\/bigint\/biguint\/multiplied(byword:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"type":"text","text":"Multiply this big integer by a single Word, and return the result."}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multiplied","kind":"identifier"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},{"kind":"text","text":") -> "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"discussion","level":2,"text":"Discussion","type":"heading"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}],"style":"note","name":"Complexity","type":"aside"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/multiplied(byword:)"]}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","title":"multiplied(byWord:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiplied"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"."},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","externalID":"s:6BigInt0A4UIntV10multiplied6byWordACSu_tF"},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt/multiplied(byWord:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplied(byWord:)","url":"\/documentation\/bigint\/biguint\/multiplied(byword:)","abstract":[{"type":"text","text":"Multiply this big integer by a single Word, and return the result."}],"title":"multiplied(byWord:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multiplied","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"byWord"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/multiply(byword:).json b/docs/data/documentation/bigint/biguint/multiply(byword:).json index d1743f7..f343042 100644 --- a/docs/data/documentation/bigint/biguint/multiply(byword:).json +++ b/docs/data/documentation/bigint/biguint/multiply(byword:).json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiply(byword:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV8multiply6byWordySu_tF","modules":[{"name":"BigInt"}],"role":"symbol","title":"multiply(byWord:)","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiply"},{"kind":"text","text":"("},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":")","kind":"text"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"mutating"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiply"},{"text":"(","kind":"text"},{"text":"byWord","kind":"externalParam"},{"kind":"text","text":" "},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","text":"Word"},{"text":")","kind":"text"}]}],"kind":"declarations"},{"content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}],"name":"Complexity"}],"kind":"content"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/multiply(byWord:)":{"url":"\/documentation\/bigint\/biguint\/multiply(byword:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"multiply"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"},{"kind":"text","text":")"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","title":"multiply(byWord:)","abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}]},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"mutating"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiply"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"name":"Complexity","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"O(count)","type":"text"}]}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiply(byword:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)"},"metadata":{"title":"multiply(byWord:)","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV8multiply6byWordySu_tF","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"multiply","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"byWord"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":")","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/multiply(byWord:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiply(byWord:)","abstract":[{"type":"text","text":"Multiply this big integer by a single word, and store the result in place of the original big integer."}],"url":"\/documentation\/bigint\/biguint\/multiply(byword:)","title":"multiply(byWord:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"multiply","kind":"identifier"},{"kind":"text","text":"("},{"text":"byWord","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"text":")","kind":"text"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:).json b/docs/data/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:).json index f597d20..df8221a 100644 --- a/docs/data/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"shift"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":" = 0)","kind":"text"}]}]},{"kind":"content","content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"name":"Note","content":[{"inlineContent":[{"text":"This is the fused multiply\/shift\/add operation; it is more efficient than doing the components","type":"text"},{"text":" ","type":"text"},{"text":"individually. (The fused operation doesn’t need to allocate space for temporary big integers.)","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"self"},{"type":"text","text":" is set to "},{"code":"self + (x * y) << (shift * 2^Word.bitWidth)","type":"codeVoice"}],"type":"paragraph"}],"style":"note","type":"aside"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}],"type":"aside","name":"Complexity","style":"note"}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"text":"Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV14multiplyAndAdd__9shiftedByyAC_SuSitF","modules":[{"name":"BigInt"}],"title":"multiplyAndAdd(_:_:shiftedBy:)","extendedModule":"BigInt","roleHeading":"Instance Method","symbolKind":"method"},"abstract":[{"text":"Multiply ","type":"text"},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":", and add the result to this integer, optionally shifted ","type":"text"},{"code":"shift","type":"codeVoice"},{"text":" words to the left.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/multiplyAndAdd(_:_:shiftedBy:)":{"url":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"multiplyAndAdd"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"text":"Word","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","title":"multiplyAndAdd(_:_:shiftedBy:)","abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"type":"codeVoice","code":"y"},{"text":", and add the result to this integer, optionally shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"type":"text","text":" words to the left."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Multiply "},{"type":"codeVoice","code":"x"},{"type":"text","text":" by "},{"code":"y","type":"codeVoice"},{"type":"text","text":", and add the result to this integer, optionally shifted "},{"code":"shift","type":"codeVoice"},{"text":" words to the left.","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV14multiplyAndAdd__9shiftedByyAC_SuSitF","symbolKind":"method","modules":[{"name":"BigInt"}],"title":"multiplyAndAdd(_:_:shiftedBy:)"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"mutating","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"x","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":".","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shift"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":" = 0)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"content":[{"anchor":"discussion","type":"heading","level":2,"text":"Discussion"},{"name":"Note","style":"note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"This is the fused multiply\/shift\/add operation; it is more efficient than doing the components"},{"type":"text","text":" "},{"type":"text","text":"individually. (The fused operation doesn’t need to allocate space for temporary big integers.)"},{"text":" ","type":"text"},{"code":"self","type":"codeVoice"},{"type":"text","text":" is set to "},{"type":"codeVoice","code":"self + (x * y) << (shift * 2^Word.bitWidth)"}],"type":"paragraph"}]},{"style":"note","content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"name":"Complexity","type":"aside"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/multiplyAndAdd(_:_:shiftedBy:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"multiplyAndAdd","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":")"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/multiplyAndAdd(_:_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","role":"symbol","title":"multiplyAndAdd(_:_:shiftedBy:)","type":"topic","abstract":[{"type":"text","text":"Multiply "},{"code":"x","type":"codeVoice"},{"text":" by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":", and add the result to this integer, optionally shifted "},{"code":"shift","type":"codeVoice"},{"text":" words to the left.","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/numeric-implementations.json b/docs/data/documentation/bigint/biguint/numeric-implementations.json index 587d998..1b08c89 100644 --- a/docs/data/documentation/bigint/biguint/numeric-implementations.json +++ b/docs/data/documentation/bigint/biguint/numeric-implementations.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"article","variants":[{"paths":["\/documentation\/bigint\/biguint\/numeric-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"Numeric Implementations","role":"collectionGroup"},"topicSections":[{"generated":true,"title":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx"],"anchor":"Initializers"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-8jpdx":{"fragments":[{"kind":"identifier","text":"init"},{"text":"?<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"exactly"},{"text":": ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":")","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx","kind":"symbol","title":"init(exactly:)","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/numeric-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Numeric-Implementations"},"schemaVersion":{"minor":3,"patch":0,"major":0},"topicSections":[{"anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx"],"generated":true,"title":"Initializers"}],"metadata":{"title":"Numeric Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/init(exactly:)-8jpdx":{"url":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/init(exactly:)-8jpdx","abstract":[],"type":"topic","title":"init(exactly:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"text":"?<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"exactly","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"T"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/playgrounddescription.json b/docs/data/documentation/bigint/biguint/playgrounddescription.json index 53fb4fa..45f907b 100644 --- a/docs/data/documentation/bigint/biguint/playgrounddescription.json +++ b/docs/data/documentation/bigint/biguint/playgrounddescription.json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Return the playground quick look representation of this integer."}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Instance Property","role":"symbol","symbolKind":"property","externalID":"s:6BigInt0A4UIntV21playgroundDescriptionypvp","title":"playgroundDescription","extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"playgroundDescription","kind":"identifier"},{"kind":"text","text":": "},{"text":"Any","kind":"keyword"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/playgrounddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"playgroundDescription","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/playgroundDescription":{"abstract":[{"type":"text","text":"Return the playground quick look representation of this integer."}],"type":"topic","role":"symbol","title":"playgroundDescription","url":"\/documentation\/bigint\/biguint\/playgrounddescription","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"kind":"text","text":": "},{"kind":"keyword","text":"Any"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/CustomPlaygroundDisplayConvertible-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","kind":"article","title":"CustomPlaygroundDisplayConvertible Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations"]]},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Instance Property","externalID":"s:6BigInt0A4UIntV21playgroundDescriptionypvp","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"playgroundDescription","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"}],"role":"symbol","title":"playgroundDescription"},"abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"playgroundDescription","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Any","kind":"keyword"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/playgrounddescription"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/CustomPlaygroundDisplayConvertible-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/CustomPlaygroundDisplayConvertible-Implementations","url":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations","role":"collectionGroup","title":"CustomPlaygroundDisplayConvertible Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/playgroundDescription":{"url":"\/documentation\/bigint\/biguint\/playgrounddescription","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"playgroundDescription"},{"text":": ","kind":"text"},{"kind":"keyword","text":"Any"}],"type":"topic","abstract":[{"text":"Return the playground quick look representation of this integer.","type":"text"}],"title":"playgroundDescription","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/playgroundDescription","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/power(_:).json b/docs/data/documentation/bigint/biguint/power(_:).json index b294a64..c91d7df 100644 --- a/docs/data/documentation/bigint/biguint/power(_:).json +++ b/docs/data/documentation/bigint/biguint/power(_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/power(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","interfaceLanguage":"swift"},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"exponent","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","text":"Return Value","level":2,"anchor":"return-value"},{"inlineContent":[{"type":"text","text":"1 if "},{"type":"codeVoice","code":"exponent == 0"},{"type":"text","text":", otherwise "},{"type":"codeVoice","code":"self"},{"type":"text","text":" raised to "},{"type":"codeVoice","code":"exponent"},{"text":". (This implies that ","type":"text"},{"type":"codeVoice","code":"0.power(0) == 1"},{"text":".)","type":"text"}],"type":"paragraph"}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"This function calculates the result by ","type":"text"},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","isActive":true,"type":"reference"},{"text":".","type":"text"}]},{"name":"Note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"This function can be unreasonably expensive for large exponents, which is why "},{"code":"exponent","type":"codeVoice"},{"text":" is","type":"text"},{"text":" ","type":"text"},{"text":"a simple integer value. If you want to calculate big exponents, you’ll probably need to use","type":"text"},{"text":" ","type":"text"},{"text":"the modulo arithmetic variant.","type":"text"}],"type":"paragraph"}],"style":"note"},{"style":"note","name":"See Also","content":[{"inlineContent":[{"type":"text","text":""},{"code":"BigUInt.power(_:, modulus:)","type":"codeVoice"}],"type":"paragraph"}],"type":"aside"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O((exponent * self.count)^log2(3)) or somesuch. The result may require a large amount of memory, too."}]}],"style":"note","name":"Complexity"}]}],"metadata":{"extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"modules":[{"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","title":"power(_:)","role":"symbol","externalID":"s:6BigInt0A4UIntV5poweryACSiF"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/power(_:)":{"url":"\/documentation\/bigint\/biguint\/power(_:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","title":"power(_:)","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}]},"https://en.wikipedia.org/wiki/Exponentiation_by_squaring":{"titleInlineContent":[{"text":"successively squaring the base while halving the exponent","type":"text"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","type":"link","title":"successively squaring the base while halving the exponent"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"abstract":[{"text":"Returns this integer raised to the power ","type":"text"},{"code":"exponent","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/power(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","interfaceLanguage":"swift"},"metadata":{"externalID":"s:6BigInt0A4UIntV5poweryACSiF","roleHeading":"Instance Method","modules":[{"name":"BigInt"}],"title":"power(_:)","role":"symbol","extendedModule":"BigInt","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"exponent","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Return Value","type":"heading","anchor":"return-value","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":"1 if "},{"type":"codeVoice","code":"exponent == 0"},{"text":", otherwise ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" raised to "},{"code":"exponent","type":"codeVoice"},{"text":". (This implies that ","type":"text"},{"code":"0.power(0) == 1","type":"codeVoice"},{"text":".)","type":"text"}]}]},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"This function calculates the result by "},{"isActive":true,"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring"},{"text":".","type":"text"}]},{"name":"Note","style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"This function can be unreasonably expensive for large exponents, which is why ","type":"text"},{"type":"codeVoice","code":"exponent"},{"text":" is","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"a simple integer value. If you want to calculate big exponents, you’ll probably need to use"},{"text":" ","type":"text"},{"type":"text","text":"the modulo arithmetic variant."}]}],"type":"aside"},{"type":"aside","name":"See Also","content":[{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"code":"BigUInt.power(_:, modulus:)","type":"codeVoice"}]}],"style":"note"},{"content":[{"type":"paragraph","inlineContent":[{"text":"O((exponent * self.count)^log2(3)) or somesuch. The result may require a large amount of memory, too.","type":"text"}]}],"type":"aside","name":"Complexity","style":"note"}],"kind":"content"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"https://en.wikipedia.org/wiki/Exponentiation_by_squaring":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring","titleInlineContent":[{"type":"text","text":"successively squaring the base while halving the exponent"}],"title":"successively squaring the base while halving the exponent","type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Exponentiation_by_squaring"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/power(_:)":{"type":"topic","abstract":[{"type":"text","text":"Returns this integer raised to the power "},{"type":"codeVoice","code":"exponent"},{"text":".","type":"text"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/power(_:)","title":"power(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/power(_:modulus:).json b/docs/data/documentation/bigint/biguint/power(_:modulus:).json index a79a45f..f4f1951 100644 --- a/docs/data/documentation/bigint/biguint/power(_:modulus:).json +++ b/docs/data/documentation/bigint/biguint/power(_:modulus:).json @@ -1 +1 @@ -{"abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"code":"exponent","type":"codeVoice"},{"text":" in modulo arithmetic under ","type":"text"},{"code":"modulus","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"title":"power(_:modulus:)","externalID":"s:6BigInt0A4UIntV5power_7modulusA2C_ACtF","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"roleHeading":"Instance Method","symbolKind":"method"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"exponent","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"externalParam","text":"modulus"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Uses the "},{"type":"reference","identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","isActive":true},{"type":"text","text":"."}]},{"type":"aside","name":"Complexity","content":[{"inlineContent":[{"text":"O(exponent.count * modulus.count^log2(3)) or somesuch","type":"text"}],"type":"paragraph"}],"style":"note"}],"kind":"content"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/power(_:modulus:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/power(_:modulus:)":{"role":"symbol","abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"code":"modulus","type":"codeVoice"},{"type":"text","text":"."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","kind":"symbol","title":"power(_:modulus:)","type":"topic","url":"\/documentation\/bigint\/biguint\/power(_:modulus:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"power"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]},"https://en.wikipedia.org/wiki/Modular_exponentiation#Right-to-left_binary_method":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","title":"right-to-left binary method","titleInlineContent":[{"type":"text","text":"right-to-left binary method"}],"type":"link","url":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"exponent"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"modulus","kind":"externalParam"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"inlineContent":[{"text":"Uses the ","type":"text"},{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","type":"reference","isActive":true},{"type":"text","text":"."}],"type":"paragraph"},{"style":"note","type":"aside","content":[{"inlineContent":[{"text":"O(exponent.count * modulus.count^log2(3)) or somesuch","type":"text"}],"type":"paragraph"}],"name":"Complexity"}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"code":"exponent","type":"codeVoice"},{"type":"text","text":" in modulo arithmetic under "},{"type":"codeVoice","code":"modulus"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/power(_:modulus:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV5power_7modulusA2C_ACtF","title":"power(_:modulus:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"power"},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"modulus"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"symbolKind":"method","modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Instance Method"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/power(_:modulus:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"power","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"modulus","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/power(_:modulus:)","url":"\/documentation\/bigint\/biguint\/power(_:modulus:)","role":"symbol","title":"power(_:modulus:)","type":"topic","abstract":[{"text":"Returns the remainder of this integer raised to the power ","type":"text"},{"type":"codeVoice","code":"exponent"},{"type":"text","text":" in modulo arithmetic under "},{"type":"codeVoice","code":"modulus"},{"text":".","type":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"https://en.wikipedia.org/wiki/Modular_exponentiation#Right-to-left_binary_method":{"identifier":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","title":"right-to-left binary method","titleInlineContent":[{"type":"text","text":"right-to-left binary method"}],"url":"https:\/\/en.wikipedia.org\/wiki\/Modular_exponentiation#Right-to-left_binary_method","type":"link"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/quotientandremainder(dividingby:).json b/docs/data/documentation/bigint/biguint/quotientandremainder(dividingby:).json index ffbdb87..22b8366 100644 --- a/docs/data/documentation/bigint/biguint/quotientandremainder(dividingby:).json +++ b/docs/data/documentation/bigint/biguint/quotientandremainder(dividingby:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"text":"dividingBy","kind":"externalParam"},{"kind":"text","text":" "},{"text":"y","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":") -> (quotient","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", remainder"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"text":"Return Value","anchor":"return-value"},{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"(quotient, remainder)"},{"type":"text","text":" where "},{"code":"quotient = floor(self\/y)","type":"codeVoice"},{"type":"text","text":", "},{"type":"codeVoice","code":"remainder = self - quotient * y"}]}]},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"style":"note","name":"Requires","type":"aside","content":[{"inlineContent":[{"type":"text","text":""},{"code":"y > 0","type":"codeVoice"}],"type":"paragraph"}]},{"content":[{"inlineContent":[{"text":"O(count^2)","type":"text"}],"type":"paragraph"}],"style":"note","type":"aside","name":"Complexity"}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"text":"dividingBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":") -> (quotient"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", remainder","kind":"text"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"roleHeading":"Instance Method","title":"quotientAndRemainder(dividingBy:)","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV20quotientAndRemainder10dividingByAC0D0_AC9remaindertAC_tF","role":"symbol","symbolKind":"method","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Divide this integer by "},{"code":"y","type":"codeVoice"},{"text":" and return the resulting quotient and remainder.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/quotientAndRemainder(dividingBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","role":"symbol","title":"quotientAndRemainder(dividingBy:)","type":"topic","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the resulting quotient and remainder."}],"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"text":"dividingBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> (quotient","kind":"text"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", remainder"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"text":"dividingBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"y"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"text":") -> (quotient","kind":"text"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", remainder"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":")"}],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"return-value","type":"heading","text":"Return Value","level":2},{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"code":"(quotient, remainder)","type":"codeVoice"},{"text":" where ","type":"text"},{"code":"quotient = floor(self\/y)","type":"codeVoice"},{"text":", ","type":"text"},{"code":"remainder = self - quotient * y","type":"codeVoice"}]}]},{"content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"content":[{"inlineContent":[{"type":"text","text":""},{"code":"y > 0","type":"codeVoice"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Requires"},{"type":"aside","content":[{"type":"paragraph","inlineContent":[{"text":"O(count^2)","type":"text"}]}],"style":"note","name":"Complexity"}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","externalID":"s:6BigInt0A4UIntV20quotientAndRemainder10dividingByAC0D0_AC9remaindertAC_tF","modules":[{"name":"BigInt"}],"title":"quotientAndRemainder(dividingBy:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"quotientAndRemainder","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"dividingBy"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> (quotient","kind":"text"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", remainder"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":")"}],"extendedModule":"BigInt","roleHeading":"Instance Method"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"abstract":[{"type":"text","text":"Divide this integer by "},{"type":"codeVoice","code":"y"},{"text":" and return the resulting quotient and remainder.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/quotientAndRemainder(dividingBy:)":{"type":"topic","kind":"symbol","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"quotientAndRemainder"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"dividingBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> (quotient","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", remainder"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"quotientAndRemainder(dividingBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/quotientAndRemainder(dividingBy:)","url":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)","abstract":[{"text":"Divide this integer by ","type":"text"},{"type":"codeVoice","code":"y"},{"type":"text","text":" and return the resulting quotient and remainder."}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(lessthan:).json b/docs/data/documentation/bigint/biguint/randominteger(lessthan:).json index 66845d6..72a0800 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(lessthan:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(lessthan:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"lessThan"},{"kind":"text","text":" "},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The upper bound on the result."}]}],"name":"limit"}]},{"kind":"content","content":[{"level":2,"type":"heading","anchor":"return-value","text":"Return Value"},{"inlineContent":[{"type":"text","text":"A random big unsigned integer that is less than "},{"type":"codeVoice","code":"limit"},{"type":"text","text":"."}],"type":"paragraph"}]},{"content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"style":"note","content":[{"inlineContent":[{"type":"text","text":""},{"code":"limit > 0","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}],"name":"Precondition","type":"aside"},{"type":"aside","style":"note","name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"I use a ","type":"text"},{"code":"SystemRandomGeneratorGenerator","type":"codeVoice"},{"type":"text","text":" as the source of randomness."}]}]}],"kind":"content"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(lessthan:)"]}],"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"("},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"role":"symbol","extendedModule":"BigInt","symbolKind":"method","roleHeading":"Type Method","title":"randomInteger(lessThan:)","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV13randomInteger8lessThanA2C_tFZ"},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","kind":"symbol","title":"randomInteger(lessThan:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"kind":"externalParam","text":"lessThan"},{"kind":"text","text":": "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The upper bound on the result."}]}],"name":"limit"}]},{"content":[{"level":2,"text":"Return Value","type":"heading","anchor":"return-value"},{"inlineContent":[{"text":"A random big unsigned integer that is less than ","type":"text"},{"code":"limit","type":"codeVoice"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"},{"kind":"content","content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"name":"Precondition","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":""},{"type":"codeVoice","code":"limit > 0"},{"text":".","type":"text"}]}],"style":"note"},{"type":"aside","name":"Note","style":"note","content":[{"inlineContent":[{"type":"text","text":"I use a "},{"code":"SystemRandomGeneratorGenerator","type":"codeVoice"},{"text":" as the source of randomness.","type":"text"}],"type":"paragraph"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(lessthan:)"]}],"abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"metadata":{"title":"randomInteger(lessThan:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"lessThan"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV13randomInteger8lessThanA2C_tFZ","role":"symbol","roleHeading":"Type Method","modules":[{"name":"BigInt"}],"symbolKind":"method"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:)":{"title":"randomInteger(lessThan:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"type":"topic","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(lessthan:using:).json b/docs/data/documentation/bigint/biguint/randominteger(lessthan:using:).json index e4f3620..a2129af 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(lessthan:using:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(lessthan:using:).json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"externalID":"s:6BigInt0A4UIntV13randomInteger8lessThan5usingA2C_xztSGRzlFZ","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"roleHeading":"Type Method","symbolKind":"method","title":"randomInteger(lessThan:using:)"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lessThan","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"limit"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SG","text":"RandomNumberGenerator","kind":"typeIdentifier"}],"languages":["swift"]}]},{"parameters":[{"content":[{"inlineContent":[{"text":"The upper bound on the result.","type":"text"}],"type":"paragraph"}],"name":"limit"},{"name":"generator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The source of randomness."}]}]}],"kind":"parameters"},{"content":[{"anchor":"return-value","level":2,"type":"heading","text":"Return Value"},{"inlineContent":[{"text":"A random big unsigned integer that is less than ","type":"text"},{"code":"limit","type":"codeVoice"},{"text":".","type":"text"}],"type":"paragraph"}],"kind":"content"},{"kind":"content","content":[{"level":2,"type":"heading","text":"Discussion","anchor":"discussion"},{"type":"aside","style":"note","name":"Precondition","content":[{"type":"paragraph","inlineContent":[{"text":"","type":"text"},{"type":"codeVoice","code":"limit > 0"},{"text":".","type":"text"}]}]}]}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit.","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:using:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","kind":"symbol","title":"randomInteger(lessThan:using:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"lessThan","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomNumberGenerator","preciseIdentifier":"s:SG","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"limit","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The upper bound on the result."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The source of randomness."}]}],"name":"generator"}]},{"kind":"content","content":[{"level":2,"anchor":"return-value","text":"Return Value","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"A random big unsigned integer that is less than ","type":"text"},{"type":"codeVoice","code":"limit"},{"type":"text","text":"."}]}]},{"content":[{"type":"heading","anchor":"discussion","level":2,"text":"Discussion"},{"content":[{"inlineContent":[{"type":"text","text":""},{"code":"limit > 0","type":"codeVoice"},{"type":"text","text":"."}],"type":"paragraph"}],"type":"aside","name":"Precondition","style":"note"}],"kind":"content"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"externalID":"s:6BigInt0A4UIntV13randomInteger8lessThan5usingA2C_xztSGRzlFZ","roleHeading":"Type Method","extendedModule":"BigInt","title":"randomInteger(lessThan:using:)","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"symbolKind":"method","role":"symbol"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(lessThan:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(lessThan:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","abstract":[{"type":"text","text":"Create a uniformly distributed random unsigned integer that’s less than the specified limit."}],"title":"randomInteger(lessThan:using:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"<"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"lessThan","kind":"externalParam"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:).json b/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:).json index 79b55c5..b58cecc 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:).json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"width"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]}]},{"kind":"content","content":[{"text":"Return Value","level":2,"anchor":"return-value","type":"heading"},{"inlineContent":[{"text":"A random big unsigned integer whose width is ","type":"text"},{"type":"codeVoice","code":"width"},{"type":"text","text":"."}],"type":"paragraph"}]},{"content":[{"text":"Discussion","type":"heading","level":2,"anchor":"discussion"},{"type":"aside","content":[{"inlineContent":[{"text":"If ","type":"text"},{"type":"codeVoice","code":"width"},{"type":"text","text":" is zero, the result is zero."}],"type":"paragraph"}],"style":"note","name":"Note"},{"name":"Note","content":[{"inlineContent":[{"text":"I use a ","type":"text"},{"code":"SystemRandomGeneratorGenerator","type":"codeVoice"},{"type":"text","text":" as the source of randomness."}],"type":"paragraph"}],"style":"note","type":"aside"}],"kind":"content"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:6BigInt0A4UIntV13randomInteger14withExactWidthACSi_tFZ","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"method","title":"randomInteger(withExactWidth:)","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"text":"withExactWidth","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"roleHeading":"Type Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:)":{"role":"symbol","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width-1"},{"text":" uniformly distributed random bits followed by a one bit.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","kind":"symbol","title":"randomInteger(withExactWidth:)","type":"topic","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withExactWidth"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"externalID":"s:6BigInt0A4UIntV13randomInteger14withExactWidthACSi_tFZ","extendedModule":"BigInt","title":"randomInteger(withExactWidth:)","roleHeading":"Type Method","modules":[{"name":"BigInt"}],"role":"symbol"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)"]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"kind":"text","text":" "},{"text":"width","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","anchor":"return-value","text":"Return Value","level":2},{"inlineContent":[{"text":"A random big unsigned integer whose width is ","type":"text"},{"type":"codeVoice","code":"width"},{"type":"text","text":"."}],"type":"paragraph"}]},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","level":2,"type":"heading"},{"content":[{"inlineContent":[{"text":"If ","type":"text"},{"code":"width","type":"codeVoice"},{"text":" is zero, the result is zero.","type":"text"}],"type":"paragraph"}],"style":"note","type":"aside","name":"Note"},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"I use a "},{"type":"codeVoice","code":"SystemRandomGeneratorGenerator"},{"type":"text","text":" as the source of randomness."}]}],"type":"aside","name":"Note"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","interfaceLanguage":"swift"},"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"title":"randomInteger(withExactWidth:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"text":"withExactWidth","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:using:).json b/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:using:).json index ebe4985..6d01330 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:using:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(withexactwidth:using:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"RNG"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"withExactWidth"},{"kind":"text","text":" "},{"text":"width","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"generator"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomNumberGenerator","kind":"typeIdentifier","preciseIdentifier":"s:SG"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"content":[{"type":"paragraph","inlineContent":[{"text":"The number of bits required to represent the answer.","type":"text"}]}],"name":"width"},{"content":[{"type":"paragraph","inlineContent":[{"text":"The source of randomness.","type":"text"}]}],"name":"generator"}]},{"content":[{"text":"Return Value","level":2,"type":"heading","anchor":"return-value"},{"inlineContent":[{"text":"A random big unsigned integer whose width is ","type":"text"},{"code":"width","type":"codeVoice"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"If ","type":"text"},{"type":"codeVoice","code":"width"},{"text":" is zero, the result is zero.","type":"text"}]}],"type":"aside","style":"note"}],"kind":"content"}],"metadata":{"modules":[{"name":"BigInt"}],"extendedModule":"BigInt","roleHeading":"Type Method","title":"randomInteger(withExactWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"text":">(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"externalID":"s:6BigInt0A4UIntV13randomInteger14withExactWidth5usingACSi_xztSGRzlFZ","symbolKind":"method","role":"symbol"},"abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)"]}],"kind":"symbol","sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","role":"symbol","title":"randomInteger(withExactWidth:using:)","type":"topic","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width-1"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"<"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"code":"width-1","type":"codeVoice"},{"type":"text","text":" uniformly distributed random bits followed by a one bit."}],"metadata":{"role":"symbol","externalID":"s:6BigInt0A4UIntV13randomInteger14withExactWidth5usingACSi_xztSGRzlFZ","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"text":">(","kind":"text"},{"text":"withExactWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"symbolKind":"method","roleHeading":"Type Method","modules":[{"name":"BigInt"}],"title":"randomInteger(withExactWidth:using:)"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"text":"withExactWidth","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"width"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomNumberGenerator","kind":"typeIdentifier","preciseIdentifier":"s:SG"}]}]},{"kind":"parameters","parameters":[{"content":[{"inlineContent":[{"type":"text","text":"The number of bits required to represent the answer."}],"type":"paragraph"}],"name":"width"},{"content":[{"inlineContent":[{"text":"The source of randomness.","type":"text"}],"type":"paragraph"}],"name":"generator"}]},{"content":[{"type":"heading","level":2,"anchor":"return-value","text":"Return Value"},{"inlineContent":[{"type":"text","text":"A random big unsigned integer whose width is "},{"type":"codeVoice","code":"width"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"type":"aside","name":"Note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If "},{"type":"codeVoice","code":"width"},{"type":"text","text":" is zero, the result is zero."}]}],"style":"note"}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withExactWidth:using:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withExactWidth:using:)","kind":"symbol","fragments":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"withExactWidth"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic","title":"randomInteger(withExactWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"code":"width-1","type":"codeVoice"},{"text":" uniformly distributed random bits followed by a one bit.","type":"text"}],"role":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:).json b/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:).json index c114c64..dad3893 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:).json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"text":"withMaximumWidth","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"width","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"parameters","parameters":[{"name":"width","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The maximum number of one bits in the result."}]}]}]},{"kind":"content","content":[{"level":2,"text":"Return Value","type":"heading","anchor":"return-value"},{"inlineContent":[{"text":"A big unsigned integer less than ","type":"text"},{"code":"1 << width","type":"codeVoice"},{"type":"text","text":"."}],"type":"paragraph"}]},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"style":"note","content":[{"inlineContent":[{"text":"I use a ","type":"text"},{"type":"codeVoice","code":"SystemRandomGeneratorGenerator"},{"text":" as the source of randomness.","type":"text"}],"type":"paragraph"}],"type":"aside","name":"Note"}],"kind":"content"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","interfaceLanguage":"swift"},"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"text":" uniformly distributed random bits.","type":"text"}],"metadata":{"symbolKind":"method","roleHeading":"Type Method","externalID":"s:6BigInt0A4UIntV13randomInteger16withMaximumWidthACSi_tFZ","extendedModule":"BigInt","role":"symbol","modules":[{"name":"BigInt"}],"fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"withMaximumWidth"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"title":"randomInteger(withMaximumWidth:)"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:)":{"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"title":"randomInteger(withMaximumWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"code":"width","type":"codeVoice"},{"type":"text","text":" uniformly distributed random bits."}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withMaximumWidth"},{"text":" ","kind":"text"},{"text":"width","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"languages":["swift"]}]},{"kind":"parameters","parameters":[{"name":"width","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The maximum number of one bits in the result."}]}]}]},{"kind":"content","content":[{"level":2,"anchor":"return-value","text":"Return Value","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"A big unsigned integer less than ","type":"text"},{"code":"1 << width","type":"codeVoice"},{"type":"text","text":"."}]}]},{"content":[{"anchor":"discussion","level":2,"type":"heading","text":"Discussion"},{"type":"aside","style":"note","name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"I use a ","type":"text"},{"type":"codeVoice","code":"SystemRandomGeneratorGenerator"},{"type":"text","text":" as the source of randomness."}]}]}],"kind":"content"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","interfaceLanguage":"swift"},"metadata":{"extendedModule":"BigInt","title":"randomInteger(withMaximumWidth:)","modules":[{"name":"BigInt"}],"roleHeading":"Type Method","symbolKind":"method","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"kind":"text","text":"("},{"text":"withMaximumWidth","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV13randomInteger16withMaximumWidthACSi_tFZ"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)"]}],"kind":"symbol","sections":[],"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"text":" uniformly distributed random bits.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:)":{"kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"("},{"kind":"externalParam","text":"withMaximumWidth"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","role":"symbol","title":"randomInteger(withMaximumWidth:)","type":"topic","abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"text":" uniformly distributed random bits.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:using:).json b/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:using:).json index 7ef0175..7c89ac3 100644 --- a/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:using:).json +++ b/docs/data/documentation/bigint/biguint/randominteger(withmaximumwidth:using:).json @@ -1 +1 @@ -{"sections":[],"abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"code":"width","type":"codeVoice"},{"type":"text","text":" uniformly distributed random bits."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"symbolKind":"method","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomInteger"},{"kind":"text","text":"<"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"title":"randomInteger(withMaximumWidth:using:)","roleHeading":"Type Method","externalID":"s:6BigInt0A4UIntV13randomInteger16withMaximumWidth5usingACSi_xztSGRzlFZ","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)","interfaceLanguage":"swift"},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"width"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"RandomNumberGenerator","kind":"typeIdentifier","preciseIdentifier":"s:SG"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"parameters":[{"content":[{"inlineContent":[{"text":"The maximum number of one bits in the result.","type":"text"}],"type":"paragraph"}],"name":"width"},{"name":"generator","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The source of randomness."}]}]}],"kind":"parameters"},{"content":[{"level":2,"text":"Return Value","type":"heading","anchor":"return-value"},{"inlineContent":[{"type":"text","text":"A big unsigned integer less than "},{"type":"codeVoice","code":"1 << width"},{"type":"text","text":"."}],"type":"paragraph"}],"kind":"content"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:using:)":{"title":"randomInteger(withMaximumWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"kind":"externalParam","text":"withMaximumWidth"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}],"abstract":[{"text":"Create a big unsigned integer consisting of ","type":"text"},{"type":"codeVoice","code":"width"},{"type":"text","text":" uniformly distributed random bits."}],"kind":"symbol","role":"symbol","type":"topic"}}} \ No newline at end of file +{"sections":[],"kind":"symbol","metadata":{"modules":[{"name":"BigInt"}],"role":"symbol","roleHeading":"Type Method","extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV13randomInteger16withMaximumWidth5usingACSi_xztSGRzlFZ","symbolKind":"method","title":"randomInteger(withMaximumWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomInteger","kind":"identifier"},{"text":"<","kind":"text"},{"text":"RNG","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"withMaximumWidth","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)"},"abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width"},{"type":"text","text":" uniformly distributed random bits."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"static"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"kind":"text","text":">("},{"text":"withMaximumWidth","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"width","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"text":"RNG","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"RNG","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomNumberGenerator","kind":"typeIdentifier","preciseIdentifier":"s:SG"}],"platforms":["macOS"],"languages":["swift"]}]},{"parameters":[{"name":"width","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"The maximum number of one bits in the result."}]}]},{"name":"generator","content":[{"inlineContent":[{"text":"The source of randomness.","type":"text"}],"type":"paragraph"}]}],"kind":"parameters"},{"kind":"content","content":[{"type":"heading","anchor":"return-value","text":"Return Value","level":2},{"type":"paragraph","inlineContent":[{"text":"A big unsigned integer less than ","type":"text"},{"type":"codeVoice","code":"1 << width"},{"type":"text","text":"."}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/randomInteger(withMaximumWidth:using:)":{"title":"randomInteger(withMaximumWidth:using:)","url":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","abstract":[{"type":"text","text":"Create a big unsigned integer consisting of "},{"type":"codeVoice","code":"width"},{"type":"text","text":" uniformly distributed random bits."}],"role":"symbol","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/randomInteger(withMaximumWidth:using:)","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomInteger"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"RNG"},{"text":">(","kind":"text"},{"text":"withMaximumWidth","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"RNG"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/serialize().json b/docs/data/documentation/bigint/biguint/serialize().json index e3a8949..c0e57da 100644 --- a/docs/data/documentation/bigint/biguint/serialize().json +++ b/docs/data/documentation/bigint/biguint/serialize().json @@ -1 +1 @@ -{"abstract":[{"text":"Return a ","type":"text"},{"type":"codeVoice","code":"Data"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/serialize()"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Data","preciseIdentifier":"s:10Foundation4DataV"}],"symbolKind":"method","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"title":"serialize()","externalID":"s:6BigInt0A4UIntV9serialize10Foundation4DataVyF","role":"symbol","roleHeading":"Instance Method"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/serialize()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/serialize()","type":"topic","abstract":[{"type":"text","text":"Return a "},{"code":"Data","type":"codeVoice"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"title":"serialize()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Return a "},{"type":"codeVoice","code":"Data"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/serialize()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","role":"symbol","title":"serialize()","externalID":"s:6BigInt0A4UIntV9serialize10Foundation4DataVyF","modules":[{"name":"BigInt"}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"serialize","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:10Foundation4DataV","kind":"typeIdentifier","text":"Data"}],"extendedModule":"BigInt"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"text":"Data","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/serialize()":{"url":"\/documentation\/bigint\/biguint\/serialize()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/serialize()","abstract":[{"text":"Return a ","type":"text"},{"type":"codeVoice","code":"Data"},{"type":"text","text":" value that contains the base-256 representation of this integer, in network (big-endian) byte order."}],"title":"serialize()","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"serialize"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation4DataV","text":"Data"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/signum().json b/docs/data/documentation/bigint/biguint/signum().json index 8322cf8..b6e24d1 100644 --- a/docs/data/documentation/bigint/biguint/signum().json +++ b/docs/data/documentation/bigint/biguint/signum().json @@ -1 +1 @@ -{"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Returns "},{"type":"codeVoice","code":"1"},{"text":" if this value is, positive; otherwise, ","type":"text"},{"type":"codeVoice","code":"0"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()"},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/signum()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"signum","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"title":"signum()","roleHeading":"Instance Method","externalID":"s:6BigInt0A4UIntV6signumACyF","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"}]}],"kind":"declarations"},{"content":[{"level":2,"text":"Return Value","type":"heading","anchor":"return-value"},{"inlineContent":[{"type":"text","text":"The sign of this number, expressed as an integer of the same type."}],"type":"paragraph"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/signum()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()","title":"signum()","abstract":[{"type":"text","text":"Returns "},{"code":"1","type":"codeVoice"},{"type":"text","text":" if this value is, positive; otherwise, "},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/signum()"}}} \ No newline at end of file +{"abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"1"},{"text":" if this value is, positive; otherwise, ","type":"text"},{"type":"codeVoice","code":"0"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/signum()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV6signumACyF","extendedModule":"BigInt","role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"signum","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"title":"signum()"},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"signum"},{"kind":"text","text":"() -> "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"return-value","level":2,"text":"Return Value","type":"heading"},{"inlineContent":[{"text":"The sign of this number, expressed as an integer of the same type.","type":"text"}],"type":"paragraph"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/signum()":{"abstract":[{"text":"Returns ","type":"text"},{"type":"codeVoice","code":"1"},{"text":" if this value is, positive; otherwise, ","type":"text"},{"code":"0","type":"codeVoice"},{"type":"text","text":"."}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/signum()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/signum()","title":"signum()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"signum"},{"text":"() -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/squareroot().json b/docs/data/documentation/bigint/biguint/squareroot().json index 06936d1..4dbac28 100644 --- a/docs/data/documentation/bigint/biguint/squareroot().json +++ b/docs/data/documentation/bigint/biguint/squareroot().json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/squareroot()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","interfaceLanguage":"swift"},"abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"type":"codeVoice","code":"value"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"languages":["swift"]}]},{"content":[{"text":"Return Value","level":2,"type":"heading","anchor":"return-value"},{"type":"paragraph","inlineContent":[{"text":"Floor(Sqrt(Self))","type":"text"}]}],"kind":"content"}],"metadata":{"extendedModule":"BigInt","modules":[{"name":"BigInt"}],"roleHeading":"Instance Method","title":"squareRoot()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"squareRoot"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"externalID":"s:6BigInt0A4UIntV10squareRootACyF","symbolKind":"method","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/squareRoot()":{"title":"squareRoot()","url":"\/documentation\/bigint\/biguint\/squareroot()","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"type":"codeVoice","code":"value"},{"type":"text","text":"."}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"}],"languages":["swift"],"platforms":["macOS"]}]},{"kind":"content","content":[{"anchor":"return-value","level":2,"text":"Return Value","type":"heading"},{"type":"paragraph","inlineContent":[{"type":"text","text":"Floor(Sqrt(Self))"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"squareRoot","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"roleHeading":"Instance Method","extendedModule":"BigInt","symbolKind":"method","role":"symbol","title":"squareRoot()","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV10squareRootACyF"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than "},{"type":"codeVoice","code":"value"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/squareroot()"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/squareRoot()":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"squareRoot","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/squareRoot()","url":"\/documentation\/bigint\/biguint\/squareroot()","role":"symbol","title":"squareRoot()","type":"topic","abstract":[{"text":"Returns the integer square root of a big integer; i.e., the largest integer whose square isn’t greater than ","type":"text"},{"code":"value","type":"codeVoice"},{"type":"text","text":"."}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/stride.json b/docs/data/documentation/bigint/biguint/stride.json index f7d252f..68847dd 100644 --- a/docs/data/documentation/bigint/biguint/stride.json +++ b/docs/data/documentation/bigint/biguint/stride.json @@ -1 +1 @@ -{"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/stride"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride"},"metadata":{"roleHeading":"Type Alias","symbolKind":"typealias","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV6Stridea","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}],"role":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}],"title":"BigUInt.Stride"},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"},{"text":" = ","kind":"text"},{"kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV"}],"platforms":["macOS"]}]}],"abstract":[{"type":"text","text":"A type that can represent the distance between two values ofa "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"role":"collectionGroup","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","kind":"article","title":"Strideable Implementations","type":"topic","url":"\/documentation\/bigint\/biguint\/strideable-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Stride":{"kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A type that can represent the distance between two values ofa "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"."}],"navigatorTitle":[{"text":"Stride","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/biguint\/stride","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride","title":"BigUInt.Stride"}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"},{"kind":"text","text":" = "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"}]}]}],"metadata":{"title":"BigUInt.Stride","fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"}],"externalID":"s:6BigInt0A4UIntV6Stridea","roleHeading":"Type Alias","symbolKind":"typealias","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","role":"symbol","navigatorTitle":[{"text":"Stride","kind":"identifier"}]},"abstract":[{"text":"A type that can represent the distance between two values ofa ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/stride"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Stride":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}],"navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","title":"BigUInt.Stride","url":"\/documentation\/bigint\/biguint\/stride","abstract":[{"type":"text","text":"A type that can represent the distance between two values ofa "},{"code":"BigUInt","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Strideable-Implementations":{"title":"Strideable Implementations","role":"collectionGroup","type":"topic","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","url":"\/documentation\/bigint\/biguint\/strideable-implementations","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/strideable-implementations.json b/docs/data/documentation/bigint/biguint/strideable-implementations.json index d539ea9..94cd3e0 100644 --- a/docs/data/documentation/bigint/biguint/strideable-implementations.json +++ b/docs/data/documentation/bigint/biguint/strideable-implementations.json @@ -1 +1 @@ -{"sections":[],"metadata":{"roleHeading":"API Collection","title":"Strideable Implementations","role":"collectionGroup","modules":[{"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/strideable-implementations"]}],"kind":"article","topicSections":[{"generated":true,"title":"Instance Methods","anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)"]},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride"],"title":"Type Aliases","generated":true,"anchor":"Type-Aliases"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/distance(to:)":{"title":"distance(to:)","kind":"symbol","abstract":[{"type":"text","text":"Returns the (potentially negative) difference between "},{"type":"codeVoice","code":"self"},{"type":"text","text":" and "},{"type":"codeVoice","code":"other"},{"text":" as a ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":". Never traps."}],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"text":"(","kind":"text"},{"text":"to","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","url":"\/documentation\/bigint\/biguint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigUInt/Stride":{"kind":"symbol","type":"topic","abstract":[{"type":"text","text":"A type that can represent the distance between two values ofa "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"."}],"navigatorTitle":[{"text":"Stride","kind":"identifier"}],"fragments":[{"kind":"keyword","text":"typealias"},{"text":" ","kind":"text"},{"text":"Stride","kind":"identifier"}],"url":"\/documentation\/bigint\/biguint\/stride","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride","title":"BigUInt.Stride"},"doc://BigInt/documentation/BigInt/BigUInt/advanced(by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/advanced(by:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"advanced"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"abstract":[{"type":"text","text":"Adds "},{"type":"codeVoice","code":"n"},{"type":"text","text":" to "},{"code":"self","type":"codeVoice"},{"type":"text","text":" and returns the result. Traps if the result would be less than zero."}],"type":"topic","kind":"symbol","title":"advanced(by:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Strideable-Implementations","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/strideable-implementations"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"topicSections":[{"generated":true,"anchor":"Instance-Methods","title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)"]},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride"],"anchor":"Type-Aliases","title":"Type Aliases"}],"sections":[],"metadata":{"roleHeading":"API Collection","role":"collectionGroup","title":"Strideable Implementations","modules":[{"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/distance(to:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"distance","kind":"identifier"},{"kind":"text","text":"("},{"text":"to","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"}],"abstract":[{"type":"text","text":"Returns the (potentially negative) difference between "},{"type":"codeVoice","code":"self"},{"text":" and ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" as a ","type":"text"},{"type":"codeVoice","code":"BigInt"},{"type":"text","text":". Never traps."}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/distance(to:)","type":"topic","title":"distance(to:)","url":"\/documentation\/bigint\/biguint\/distance(to:)"},"doc://BigInt/documentation/BigInt/BigUInt/Stride":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Stride","fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Stride"}],"navigatorTitle":[{"text":"Stride","kind":"identifier"}],"type":"topic","title":"BigUInt.Stride","url":"\/documentation\/bigint\/biguint\/stride","abstract":[{"type":"text","text":"A type that can represent the distance between two values ofa "},{"code":"BigUInt","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/advanced(by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"advanced"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","text":"BigInt"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"url":"\/documentation\/bigint\/biguint\/advanced(by:)","kind":"symbol","title":"advanced(by:)","abstract":[{"type":"text","text":"Adds "},{"type":"codeVoice","code":"n"},{"text":" to ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" and returns the result. Traps if the result would be less than zero."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/advanced(by:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subscript(bitat:).json b/docs/data/documentation/bigint/biguint/subscript(bitat:).json index 0313c6e..f2bd410 100644 --- a/docs/data/documentation/bigint/biguint/subscript(bitat:).json +++ b/docs/data/documentation/bigint/biguint/subscript(bitat:).json @@ -1 +1 @@ -{"metadata":{"symbolKind":"subscript","modules":[{"name":"BigInt"}],"role":"symbol","extendedModule":"BigInt","title":"subscript(bitAt:)","externalID":"s:6BigInt0A4UIntV5bitAtSbSi_tcip","roleHeading":"Instance Subscript","fragments":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"text":"bitAt","kind":"externalParam"},{"kind":"text","text":" _: "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/subscript(bitat:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"bitAt","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"index","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" ","kind":"text"},{"text":"set","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/subscript(bitAt:)":{"role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)","kind":"symbol","title":"subscript(bitAt:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subscript(bitat:)","fragments":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"bitAt","kind":"externalParam"},{"kind":"text","text":" _: "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"bitAt"},{"text":" ","kind":"text"},{"text":"index","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" ","kind":"text"},{"text":"set","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)"},"metadata":{"roleHeading":"Instance Subscript","title":"subscript(bitAt:)","extendedModule":"BigInt","symbolKind":"subscript","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"bitAt","kind":"externalParam"},{"text":" _: ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"name":"BigInt"}],"role":"symbol","externalID":"s:6BigInt0A4UIntV5bitAtSbSi_tcip"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/subscript(bitat:)"]}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/subscript(bitAt:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"text":"bitAt","kind":"externalParam"},{"text":" _: ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subscript(bitAt:)","url":"\/documentation\/bigint\/biguint\/subscript(bitat:)","role":"symbol","title":"subscript(bitAt:)","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subtract(_:shiftedby:).json b/docs/data/documentation/bigint/biguint/subtract(_:shiftedby:).json index b866154..2915628 100644 --- a/docs/data/documentation/bigint/biguint/subtract(_:shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/subtract(_:shiftedby:).json @@ -1 +1 @@ -{"abstract":[{"text":"Subtract ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" from this integer in place."},{"text":" ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"code":"shift","type":"codeVoice"},{"type":"text","text":" digits to the left before being subtracted."}],"metadata":{"symbolKind":"method","externalID":"s:6BigInt0A4UIntV8subtract_9shiftedByyAC_SitF","title":"subtract(_:shiftedBy:)","roleHeading":"Instance Method","role":"symbol","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtract","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":")","kind":"text"}]},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"mutating"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"subtract","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" = 0)","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"anchor":"discussion","text":"Discussion","type":"heading","level":2},{"style":"note","content":[{"inlineContent":[{"type":"text","text":"Self >= other * 2^shift"}],"type":"paragraph"}],"name":"Requires","type":"aside"},{"style":"note","content":[{"inlineContent":[{"text":"O(count)","type":"text"}],"type":"paragraph"}],"name":"Complexity","type":"aside"}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtract(_:shiftedBy:)":{"title":"subtract(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtract","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place."},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"mutating"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtract","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" = 0)","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]},{"content":[{"anchor":"discussion","type":"heading","level":2,"text":"Discussion"},{"style":"note","name":"Requires","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Self >= other * 2^shift"}]}],"type":"aside"},{"type":"aside","style":"note","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}]}],"kind":"content"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place."},{"text":" ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)"]}],"metadata":{"title":"subtract(_:shiftedBy:)","externalID":"s:6BigInt0A4UIntV8subtract_9shiftedByyAC_SitF","extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtract","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":")","kind":"text"}],"symbolKind":"method","modules":[{"name":"BigInt"}],"roleHeading":"Instance Method","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtract(_:shiftedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtract"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtract(_:shiftedBy:)","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place."},{"text":" ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","type":"topic","title":"subtract(_:shiftedBy:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subtracting(_:shiftedby:).json b/docs/data/documentation/bigint/biguint/subtracting(_:shiftedby:).json index ee7bf9f..0d4cdd3 100644 --- a/docs/data/documentation/bigint/biguint/subtracting(_:shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/subtracting(_:shiftedby:).json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"type":"text","text":" from this integer, and return the difference."},{"text":" ","type":"text"},{"code":"b","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtracting"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":" = 0) -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"content":[{"inlineContent":[{"type":"text","text":"Self >= b * 2^shift"}],"type":"paragraph"}],"name":"Requires","style":"note","type":"aside"},{"name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"text":"O(count)","type":"text"}]}],"style":"note","type":"aside"}],"kind":"content"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)"},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtracting"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"role":"symbol","extendedModule":"BigInt","symbolKind":"method","roleHeading":"Instance Method","title":"subtracting(_:shiftedBy:)","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV11subtracting_9shiftedByA2C_SitF"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/subtracting(_:shiftedBy:)":{"role":"symbol","abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"b"},{"type":"text","text":" from this integer, and return the difference."},{"type":"text","text":" "},{"type":"codeVoice","code":"b"},{"text":" is shifted ","type":"text"},{"code":"shift","type":"codeVoice"},{"text":" digits to the left before being subtracted.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","kind":"symbol","title":"subtracting(_:shiftedBy:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"subtracting","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtracting","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":" "},{"kind":"internalParam","text":"shift"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" = 0) -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","text":"BigUInt"}]}]},{"content":[{"level":2,"text":"Discussion","anchor":"discussion","type":"heading"},{"name":"Requires","type":"aside","content":[{"inlineContent":[{"text":"Self >= b * 2^shift","type":"text"}],"type":"paragraph"}],"style":"note"},{"name":"Complexity","content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"type":"aside","style":"note"}],"kind":"content"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV11subtracting_9shiftedByA2C_SitF","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"BigInt","title":"subtracting(_:shiftedBy:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtracting"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"}]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" from this integer, and return the difference.","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"b"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtracting(_:shiftedBy:)":{"role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtracting(_:shiftedBy:)","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtracting"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}],"title":"subtracting(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"b"},{"text":" from this integer, and return the difference.","type":"text"},{"type":"text","text":" "},{"type":"codeVoice","code":"b"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:).json b/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:).json index f00e55b..bf5ea22 100644 --- a/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:).json +++ b/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":") -> (partialValue"},{"kind":"text","text":": "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"style":"note","name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"When the operation overflows, then ","type":"text"},{"type":"codeVoice","code":"partialValue"},{"text":" is the twos’ complement of the absolute value of the difference.","type":"text"}]}],"type":"aside"},{"name":"Complexity","style":"note","content":[{"inlineContent":[{"text":"O(count)","type":"text"}],"type":"paragraph"}],"type":"aside"}],"kind":"content"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","title":"subtractingReportingOverflow(_:)","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV28subtractingReportingOverflowyAC12partialValue_Sb8overflowtACF","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtractingReportingOverflow"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> (partialValue","kind":"text"},{"kind":"text","text":": "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":")"}]},"abstract":[{"text":"Subtracts ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"self"},{"text":", returning the result and a flag indicating arithmetic overflow.","type":"text"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:)":{"title":"subtractingReportingOverflow(_:)","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtractingReportingOverflow"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", overflow"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":")","kind":"text"}],"abstract":[{"type":"text","text":"Subtracts "},{"type":"codeVoice","code":"other"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":", returning the result and a flag indicating arithmetic overflow."}],"kind":"symbol","role":"symbol","type":"topic"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)"},"metadata":{"role":"symbol","roleHeading":"Instance Method","extendedModule":"BigInt","symbolKind":"method","modules":[{"name":"BigInt"}],"title":"subtractingReportingOverflow(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"externalID":"s:6BigInt0A4UIntV28subtractingReportingOverflowyAC12partialValue_Sb8overflowtACF"},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"subtractingReportingOverflow","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"},{"kind":"content","content":[{"type":"heading","level":2,"anchor":"discussion","text":"Discussion"},{"content":[{"inlineContent":[{"type":"text","text":"When the operation overflows, then "},{"type":"codeVoice","code":"partialValue"},{"type":"text","text":" is the twos’ complement of the absolute value of the difference."}],"type":"paragraph"}],"type":"aside","name":"Note","style":"note"},{"name":"Complexity","style":"note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}]}]}],"abstract":[{"type":"text","text":"Subtracts "},{"type":"codeVoice","code":"other"},{"text":" from ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":", returning the result and a flag indicating arithmetic overflow."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:)","abstract":[{"text":"Subtracts ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" from "},{"type":"codeVoice","code":"self"},{"type":"text","text":", returning the result and a flag indicating arithmetic overflow."}],"url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","title":"subtractingReportingOverflow(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"subtractingReportingOverflow"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", overflow"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:).json b/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:).json index 4de4c6a..a22f3fb 100644 --- a/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer, returning the difference and a flag indicating arithmetic overflow."},{"type":"text","text":" "},{"type":"codeVoice","code":"other"},{"text":" is shifted ","type":"text"},{"code":"shift","type":"codeVoice"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","metadata":{"extendedModule":"BigInt","role":"symbol","externalID":"s:6BigInt0A4UIntV28subtractingReportingOverflow_9shiftedByAC12partialValue_Sb8overflowtAC_SitF","title":"subtractingReportingOverflow(_:shiftedBy:)","symbolKind":"method","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":", overflow","kind":"text"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shift"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", overflow","kind":"text"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"anchor":"discussion","text":"Discussion","type":"heading","level":2},{"style":"note","type":"aside","content":[{"inlineContent":[{"text":"If ","type":"text"},{"code":"overflow","type":"codeVoice"},{"text":" is true, then the result value is the twos’ complement of the absolute value of the difference.","type":"text"}],"type":"paragraph"}],"name":"Note"},{"type":"aside","name":"Complexity","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}]}],"kind":"content"}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:shiftedBy:)":{"role":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer, returning the difference and a flag indicating arithmetic overflow."},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)","kind":"symbol","title":"subtractingReportingOverflow(_:shiftedBy:)","type":"topic","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractingReportingOverflow"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"text":" ","kind":"text"},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}]}]},{"kind":"content","content":[{"anchor":"discussion","type":"heading","text":"Discussion","level":2},{"name":"Note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"If "},{"code":"overflow","type":"codeVoice"},{"type":"text","text":" is true, then the result value is the twos’ complement of the absolute value of the difference."}]}],"style":"note"},{"type":"aside","content":[{"inlineContent":[{"text":"O(count)","type":"text"}],"type":"paragraph"}],"style":"note","name":"Complexity"}]}],"abstract":[{"text":"Subtract ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" from this integer, returning the difference and a flag indicating arithmetic overflow."},{"text":" ","type":"text"},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"metadata":{"symbolKind":"method","externalID":"s:6BigInt0A4UIntV28subtractingReportingOverflow_9shiftedByAC12partialValue_Sb8overflowtAC_SitF","role":"symbol","roleHeading":"Instance Method","title":"subtractingReportingOverflow(_:shiftedBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"subtractingReportingOverflow","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> (partialValue"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"modules":[{"name":"BigInt"}],"extendedModule":"BigInt"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/subtractingReportingOverflow(_:shiftedBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractingReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","abstract":[{"type":"text","text":"Subtract "},{"code":"other","type":"codeVoice"},{"text":" from this integer, returning the difference and a flag indicating arithmetic overflow.","type":"text"},{"type":"text","text":" "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"text":" digits to the left before being subtracted.","type":"text"}],"title":"subtractingReportingOverflow(_:shiftedBy:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtractingReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> (partialValue","kind":"text"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":", overflow","kind":"text"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":")"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:).json b/docs/data/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:).json index e53b5dc..c1b5cdc 100644 --- a/docs/data/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:).json +++ b/docs/data/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:).json @@ -1 +1 @@ -{"metadata":{"extendedModule":"BigInt","externalID":"s:6BigInt0A4UIntV25subtractReportingOverflow_9shiftedBySbAC_SitF","symbolKind":"method","modules":[{"name":"BigInt"}],"role":"symbol","title":"subtractReportingOverflow(_:shiftedBy:)","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractReportingOverflow"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"shiftedBy"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"mutating"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"subtractReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"b"},{"kind":"text","text":": "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":" "},{"text":"shift","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" = 0) -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}]},{"kind":"content","content":[{"type":"heading","anchor":"discussion","text":"Discussion","level":2},{"type":"aside","style":"note","name":"Note","content":[{"type":"paragraph","inlineContent":[{"text":"If the result indicates an overflow, then ","type":"text"},{"code":"self","type":"codeVoice"},{"type":"text","text":" becomes the twos’ complement of the absolute difference."}]}]},{"style":"note","name":"Complexity","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}]}]}],"kind":"symbol","abstract":[{"text":"Subtract ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" from this integer in place, and return a flag indicating if the operation caused an","type":"text"},{"text":" ","type":"text"},{"text":"arithmetic overflow. ","type":"text"},{"code":"other","type":"codeVoice"},{"text":" is shifted ","type":"text"},{"code":"shift","type":"codeVoice"},{"type":"text","text":" digits to the left before being subtracted."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)"},"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtractReportingOverflow(_:shiftedBy:)":{"title":"subtractReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractReportingOverflow"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"type":"text","text":" from this integer in place, and return a flag indicating if the operation caused an"},{"type":"text","text":" "},{"text":"arithmetic overflow. ","type":"text"},{"type":"codeVoice","code":"other"},{"type":"text","text":" is shifted "},{"code":"shift","type":"codeVoice"},{"text":" digits to the left before being subtracted.","type":"text"}],"kind":"symbol","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"mutating","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"subtractReportingOverflow"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"b","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"shift"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":" = 0) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"platforms":["macOS"],"languages":["swift"]}]},{"content":[{"type":"heading","level":2,"text":"Discussion","anchor":"discussion"},{"type":"aside","name":"Note","content":[{"inlineContent":[{"text":"If the result indicates an overflow, then ","type":"text"},{"type":"codeVoice","code":"self"},{"type":"text","text":" becomes the twos’ complement of the absolute difference."}],"type":"paragraph"}],"style":"note"},{"type":"aside","name":"Complexity","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}]}],"kind":"content"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"symbolKind":"method","title":"subtractReportingOverflow(_:shiftedBy:)","externalID":"s:6BigInt0A4UIntV25subtractReportingOverflow_9shiftedBySbAC_SitF","extendedModule":"BigInt","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"subtractReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"shiftedBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Subtract "},{"type":"codeVoice","code":"other"},{"text":" from this integer in place, and return a flag indicating if the operation caused an","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"arithmetic overflow. "},{"code":"other","type":"codeVoice"},{"text":" is shifted ","type":"text"},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/subtractReportingOverflow(_:shiftedBy:)":{"kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"subtractReportingOverflow","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":", "},{"kind":"externalParam","text":"shiftedBy"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/subtractReportingOverflow(_:shiftedBy:)","url":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","role":"symbol","title":"subtractReportingOverflow(_:shiftedBy:)","type":"topic","abstract":[{"text":"Subtract ","type":"text"},{"type":"codeVoice","code":"other"},{"text":" from this integer in place, and return a flag indicating if the operation caused an","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"arithmetic overflow. "},{"code":"other","type":"codeVoice"},{"type":"text","text":" is shifted "},{"type":"codeVoice","code":"shift"},{"type":"text","text":" digits to the left before being subtracted."}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/trailingzerobitcount.json b/docs/data/documentation/bigint/biguint/trailingzerobitcount.json index 8aa13c8..b0a2ebe 100644 --- a/docs/data/documentation/bigint/biguint/trailingzerobitcount.json +++ b/docs/data/documentation/bigint/biguint/trailingzerobitcount.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","interfaceLanguage":"swift"},"abstract":[{"text":"The number of trailing zero bits in the binary representation of this integer.","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"trailingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}]},{"kind":"content","content":[{"level":2,"type":"heading","text":"Return Value","anchor":"return-value"},{"type":"paragraph","inlineContent":[{"type":"text","text":"A value in "},{"type":"codeVoice","code":"0...width"},{"type":"text","text":"."}]}]},{"kind":"content","content":[{"type":"heading","text":"Discussion","anchor":"discussion","level":2},{"name":"Note","style":"note","type":"aside","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"0 is considered to have zero trailing zero bits."}]}]},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count)"}]}],"name":"Complexity","type":"aside","style":"note"}]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/trailingzerobitcount"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"roleHeading":"Instance Property","externalID":"s:6BigInt0A4UIntV20trailingZeroBitCountSivp","role":"symbol","modules":[{"name":"BigInt"}],"extendedModule":"BigInt","symbolKind":"property","title":"trailingZeroBitCount","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}]},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/trailingZeroBitCount":{"type":"topic","url":"\/documentation\/bigint\/biguint\/trailingzerobitcount","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"trailingZeroBitCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"abstract":[{"type":"text","text":"The number of trailing zero bits in the binary representation of this integer."}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","title":"trailingZeroBitCount","role":"symbol","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"kind":"symbol","metadata":{"externalID":"s:6BigInt0A4UIntV20trailingZeroBitCountSivp","symbolKind":"property","role":"symbol","roleHeading":"Instance Property","modules":[{"name":"BigInt"}],"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"extendedModule":"BigInt","title":"trailingZeroBitCount"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/trailingzerobitcount"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"The number of trailing zero bits in the binary representation of this integer."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"trailingZeroBitCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}]},{"content":[{"anchor":"return-value","text":"Return Value","level":2,"type":"heading"},{"type":"paragraph","inlineContent":[{"text":"A value in ","type":"text"},{"code":"0...width","type":"codeVoice"},{"type":"text","text":"."}]}],"kind":"content"},{"content":[{"level":2,"type":"heading","text":"Discussion","anchor":"discussion"},{"type":"aside","style":"note","content":[{"type":"paragraph","inlineContent":[{"text":"0 is considered to have zero trailing zero bits.","type":"text"}]}],"name":"Note"},{"style":"note","content":[{"inlineContent":[{"type":"text","text":"O(count)"}],"type":"paragraph"}],"type":"aside","name":"Complexity"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/trailingZeroBitCount":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/trailingzerobitcount","title":"trailingZeroBitCount","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trailingZeroBitCount"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"abstract":[{"type":"text","text":"The number of trailing zero bits in the binary representation of this integer."}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/trailingZeroBitCount","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/unsignedinteger-implementations.json b/docs/data/documentation/bigint/biguint/unsignedinteger-implementations.json index 168663f..d1bb989 100644 --- a/docs/data/documentation/bigint/biguint/unsignedinteger-implementations.json +++ b/docs/data/documentation/bigint/biguint/unsignedinteger-implementations.json @@ -1 +1 @@ -{"variants":[{"paths":["\/documentation\/bigint\/biguint\/unsignedinteger-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","title":"UnsignedInteger Implementations","role":"collectionGroup"},"topicSections":[{"generated":true,"anchor":"Instance-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude"],"title":"Instance Properties"},{"title":"Type Properties","anchor":"Type-Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk"],"generated":true}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-996wk":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"role":"symbol","abstract":[],"title":"isSigned","type":"topic","url":"\/documentation\/bigint\/biguint\/issigned-996wk"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/magnitude":{"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude","title":"magnitude","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/magnitude"}}} \ No newline at end of file +{"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"API Collection","role":"collectionGroup","title":"UnsignedInteger Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/UnsignedInteger-Implementations"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/unsignedinteger-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"kind":"article","topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude"],"title":"Instance Properties","anchor":"Instance-Properties","generated":true},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk"],"title":"Type Properties","anchor":"Type-Properties"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/magnitude":{"kind":"symbol","role":"symbol","title":"magnitude","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/magnitude","url":"\/documentation\/bigint\/biguint\/magnitude","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"magnitude"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/isSigned-996wk":{"type":"topic","role":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"isSigned"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/isSigned-996wk","title":"isSigned","url":"\/documentation\/bigint\/biguint\/issigned-996wk","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/word.json b/docs/data/documentation/bigint/biguint/word.json index f2a97de..e721c9c 100644 --- a/docs/data/documentation/bigint/biguint/word.json +++ b/docs/data/documentation/bigint/biguint/word.json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/word"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},"abstract":[{"text":"The type representing a digit in ","type":"text"},{"type":"codeVoice","code":"BigUInt"},{"text":"’s underlying number system.","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"},{"text":" = ","kind":"text"},{"kind":"typeIdentifier","text":"UInt","preciseIdentifier":"s:Su"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Type Alias","navigatorTitle":[{"text":"Word","kind":"identifier"}],"title":"BigUInt.Word","fragments":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"externalID":"s:6BigInt0A4UIntV4Worda","symbolKind":"typealias","role":"symbol"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"typealias","kind":"keyword"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"},{"text":" = ","kind":"text"},{"text":"UInt","preciseIdentifier":"s:Su","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/word"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"The type representing a digit in ","type":"text"},{"code":"BigUInt","type":"codeVoice"},{"text":"’s underlying number system.","type":"text"}],"kind":"symbol","metadata":{"symbolKind":"typealias","navigatorTitle":[{"text":"Word","kind":"identifier"}],"roleHeading":"Type Alias","role":"symbol","title":"BigUInt.Word","modules":[{"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"externalID":"s:6BigInt0A4UIntV4Worda"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.property.json b/docs/data/documentation/bigint/biguint/words-swift.property.json index 3c38e37..60942c2 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.property.json +++ b/docs/data/documentation/bigint/biguint/words-swift.property.json @@ -1 +1 @@ -{"metadata":{"externalID":"s:6BigInt0A4UIntV5wordsAC5WordsVvp","roleHeading":"Instance Property","role":"symbol","title":"words","symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"words"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","text":"Words","kind":"typeIdentifier"}],"extendedModule":"BigInt","modules":[{"name":"BigInt"}]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"words","kind":"identifier"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"kind":"text","text":"."},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","text":"Words","preciseIdentifier":"s:6BigInt0A4UIntV5WordsV"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.property"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"BinaryInteger.words","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/words-swift.property":{"abstract":[],"type":"topic","kind":"symbol","title":"words","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property","url":"\/documentation\/bigint\/biguint\/words-swift.property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Words","preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","kind":"typeIdentifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"words","kind":"identifier"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","text":"Words","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"metadata":{"externalID":"s:6BigInt0A4UIntV5wordsAC5WordsVvp","extendedModule":"BigInt","modules":[{"name":"BigInt"}],"role":"symbol","title":"words","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"text":": ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","text":"Words","kind":"typeIdentifier"}],"symbolKind":"property"},"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.property"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BinaryInteger.words","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/words-swift.property":{"abstract":[],"role":"symbol","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"words"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV5WordsV","text":"Words","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.property","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/words-swift.property","title":"words"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct.json b/docs/data/documentation/bigint/biguint/words-swift.struct.json index c810568..39e9b3f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct.json @@ -1 +1 @@ -{"kind":"symbol","topicSections":[{"title":"Instance Properties","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex"],"anchor":"Instance-Properties"},{"title":"Subscripts","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)"],"generated":true,"anchor":"Subscripts"},{"anchor":"Default-Implementations","title":"Default Implementations","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]}],"metadata":{"symbolKind":"struct","roleHeading":"Structure","title":"BigUInt.Words","extendedModule":"BigInt","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"externalID":"s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt"}],"role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"},"relationshipsSections":[{"type":"conformsTo","identifiers":["doc:\/\/BigInt\/SK","doc:\/\/BigInt\/Sl","doc:\/\/BigInt\/Sk","doc:\/\/BigInt\/ST"],"title":"Conforms To","kind":"relationships"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.Words"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"startIndex","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"title":"startIndex","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","type":"topic","abstract":[],"kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/endIndex":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","abstract":[],"title":"endIndex","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/Sl":{"identifier":"doc:\/\/BigInt\/Sl","title":"Swift.Collection","type":"unresolvable"},"doc://BigInt/Sk":{"identifier":"doc:\/\/BigInt\/Sk","title":"Swift.RandomAccessCollection","type":"unresolvable"},"doc://BigInt/SK":{"identifier":"doc:\/\/BigInt\/SK","title":"Swift.BidirectionalCollection","type":"unresolvable"},"doc://BigInt/ST":{"identifier":"doc:\/\/BigInt\/ST","title":"Swift.Sequence","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/subscript(_:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)","role":"symbol","type":"topic","fragments":[{"text":"subscript","kind":"keyword"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"}],"kind":"symbol","title":"subscript(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/RandomAccessCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","abstract":[],"title":"RandomAccessCollection Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"metadata":{"externalID":"s:6BigInt0A4UIntV5WordsV","roleHeading":"Structure","title":"BigUInt.Words","extendedModule":"BigInt","role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"symbolKind":"struct","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex"],"anchor":"Instance-Properties","generated":true},{"generated":true,"title":"Subscripts","anchor":"Subscripts","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)"]},{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"],"title":"Default Implementations","anchor":"Default-Implementations"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BinaryInteger.Words"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"},"relationshipsSections":[{"title":"Conforms To","kind":"relationships","type":"conformsTo","identifiers":["doc:\/\/BigInt\/SK","doc:\/\/BigInt\/Sl","doc:\/\/BigInt\/Sk","doc:\/\/BigInt\/ST"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/subscript(_:)":{"title":"subscript(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)","fragments":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"}],"type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/ST":{"type":"unresolvable","title":"Swift.Sequence","identifier":"doc:\/\/BigInt\/ST"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/startIndex":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","title":"startIndex","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex"},"doc://BigInt/Sl":{"title":"Swift.Collection","identifier":"doc:\/\/BigInt\/Sl","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/RandomAccessCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","role":"collectionGroup","type":"topic","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"},"doc://BigInt/SK":{"title":"Swift.BidirectionalCollection","identifier":"doc:\/\/BigInt\/SK","type":"unresolvable"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/endIndex":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","abstract":[],"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"kind":"symbol","title":"endIndex"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/Sk":{"title":"Swift.RandomAccessCollection","identifier":"doc:\/\/BigInt\/Sk","type":"unresolvable"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:).json index 9f09d20..e8c8dcd 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)"]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"allSatisfy","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"role":"symbol","roleHeading":"Instance Method","externalID":"s:STsE10allSatisfyyS2b7ElementQzKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","symbolKind":"method","title":"allSatisfy(_:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.allSatisfy(_:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"allSatisfy","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/allSatisfy(_:)":{"title":"allSatisfy(_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)","kind":"symbol","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.allSatisfy(_:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","interfaceLanguage":"swift"},"metadata":{"title":"allSatisfy(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"allSatisfy"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"extendedModule":"Swift","externalID":"s:STsE10allSatisfyyS2b7ElementQzKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/allSatisfy(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","title":"allSatisfy(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations.json b/docs/data/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations.json index 2d9361b..fcc7182 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations.json @@ -1 +1 @@ -{"metadata":{"title":"BidirectionalCollection Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"kind":"article","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","interfaceLanguage":"swift"},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last"],"generated":true,"anchor":"Instance-Properties"},{"anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"],"title":"Instance Methods","generated":true}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:by:)":{"type":"topic","kind":"symbol","abstract":[],"title":"difference(from:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:)":{"title":"difference(from:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"kind":"symbol","type":"topic","role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(before:)":{"type":"topic","kind":"symbol","abstract":[],"title":"formIndex(before:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reversed()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"ReversedCollection","preciseIdentifier":"s:s18ReversedCollectionV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()","abstract":[],"type":"topic","title":"reversed()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last","abstract":[],"role":"symbol","kind":"symbol","title":"last","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(_:)":{"kind":"symbol","role":"symbol","title":"suffix(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropLast(_:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","abstract":[],"type":"topic","title":"dropLast(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(where:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","abstract":[],"role":"symbol","kind":"symbol","title":"lastIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"title":"lastIndex(of:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-4avlo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","role":"symbol","title":"firstRange(of:)","type":"topic","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">?"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"last"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","abstract":[],"type":"topic","title":"last(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"kind":"article","schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last"],"title":"Instance Properties","anchor":"Instance-Properties"},{"anchor":"Instance-Methods","generated":true,"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","interfaceLanguage":"swift"},"metadata":{"roleHeading":"API Collection","title":"BidirectionalCollection Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-4avlo":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"title":"firstRange(of:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">?","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(where:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","abstract":[],"role":"symbol","kind":"symbol","title":"lastIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(before:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","title":"formIndex(before:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last(where:)":{"type":"topic","abstract":[],"kind":"symbol","title":"last(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:by:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","abstract":[],"role":"symbol","kind":"symbol","type":"topic","title":"lastIndex(of:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropLast(_:)":{"abstract":[],"kind":"symbol","title":"dropLast(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last":{"title":"last","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","type":"topic","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)","title":"suffix(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)","abstract":[],"role":"symbol","title":"difference(from:)","kind":"symbol","type":"topic","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reversed()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","kind":"symbol","role":"symbol","title":"reversed()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/collection-implementations.json b/docs/data/documentation/bigint/biguint/words-swift.struct/collection-implementations.json index 919beba..8f6fcf7 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/collection-implementations.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/collection-implementations.json @@ -1 +1 @@ -{"metadata":{"role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}],"title":"Collection Implementations"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"},"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount"],"generated":true,"anchor":"Instance-Properties","title":"Instance Properties"},{"anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)"],"title":"Instance Methods","generated":true}],"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-8gbi2":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","kind":"symbol","title":"firstRange(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}],"title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(where:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)","title":"indices(where:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(of:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">","kind":"text"}],"abstract":[],"title":"indices(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","kind":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]}},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(from:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"title":"suffix(from:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-5b6g":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"title":"map(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(_:)":{"type":"topic","kind":"symbol","abstract":[],"title":"trimmingPrefix(_:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropFirst(_:)":{"kind":"symbol","title":"dropFirst(_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(through:)":{"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"title":"prefix(through:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/ranges(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic","abstract":[],"title":"ranges(of:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">]","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement(using:)":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"title":"randomElement(using:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"title":"formIndex(_:offsetBy:limitedBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","kind":"symbol","role":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/makeIterator()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","title":"makeIterator()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()","abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(of:)":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"firstIndex(of:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"count","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/drop(while:)":{"title":"drop(while:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","role":"symbol","title":"prefix(while:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/underestimatedCount":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount","kind":"symbol","role":"symbol","title":"underestimatedCount","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","type":"topic","abstract":[],"title":"firstIndex(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(_:)":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)","title":"prefix(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/isEmpty":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","title":"isEmpty","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEmpty","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(of:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)","abstract":[],"title":"index(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"deprecated":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(after:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"after"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"abstract":[],"role":"symbol","kind":"symbol","title":"formIndex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","kind":"symbol","abstract":[],"title":"first","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(upTo:)":{"title":"prefix(upTo:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement()":{"title":"randomElement()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:)":{"kind":"symbol","title":"formIndex(_:offsetBy:)","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(while:)":{"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","abstract":[],"title":"trimmingPrefix(while:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/removingSubranges(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","type":"topic","title":"removingSubranges(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removingSubranges","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"topicSections":[{"title":"Instance Properties","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount"],"anchor":"Instance-Properties","generated":true},{"anchor":"Instance-Methods","generated":true,"title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)"]}],"kind":"article","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"},"metadata":{"role":"collectionGroup","title":"Collection Implementations","modules":[{"name":"BigInt"}],"roleHeading":"API Collection"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/isEmpty":{"title":"isEmpty","kind":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(while:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","abstract":[],"kind":"symbol","type":"topic","title":"prefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-5b6g":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}],"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","kind":"symbol","title":"map(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/underestimatedCount":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"underestimatedCount","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount","kind":"symbol","title":"underestimatedCount","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(through:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","title":"prefix(through:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"through","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/ranges(of:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"ranges"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">]","kind":"text"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","kind":"symbol","title":"ranges(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","title":"prefix(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(while:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","title":"trimmingPrefix(while:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"index(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"deprecated":true,"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-8gbi2":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">?"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","kind":"symbol","title":"firstRange(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","title":"formIndex(_:offsetBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement(using:)":{"role":"symbol","kind":"symbol","title":"randomElement(using:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","kind":"symbol","title":"formIndex(_:offsetBy:limitedBy:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","title":"randomElement()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(from:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)","kind":"symbol","title":"suffix(from:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/makeIterator()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"code":"IndexingIterator","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"title":"makeIterator()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"IndexingIterator","preciseIdentifier":"s:s16IndexingIteratorV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(of:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)","kind":"symbol","title":"firstIndex(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(after:)":{"title":"formIndex(after:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"title":"split(separator:maxSplits:omittingEmptySubsequences:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/drop(while:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"title":"drop(while:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","title":"count","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"title":"trimmingPrefix(_:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"title":"indices(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropFirst(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","title":"dropFirst(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/removingSubranges(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","title":"removingSubranges(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"removingSubranges","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:s8RangeSetV","text":"RangeSet","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(upTo:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"upTo"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","title":"prefix(upTo:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","title":"first","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"whereSeparator"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(where:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)","title":"indices(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(where:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","title":"firstIndex(where:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/compactmap(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/compactmap(_:).json index df29e75..8446cc4 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/compactmap(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/compactmap(_:).json @@ -1 +1 @@ -{"kind":"symbol","metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"compactMap"},{"kind":"text","text":"<"},{"text":"ElementOfResult","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"externalID":"s:STsE10compactMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","title":"compactMap(_:)","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"?) "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compactMap(_:)"},{"text":".","type":"text"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compactMap(_:)":{"kind":"symbol","title":"compactMap(_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"text":"<","kind":"text"},{"text":"ElementOfResult","kind":"genericParameter"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"externalID":"s:STsE10compactMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"compactMap(_:)"},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compactMap(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"?) "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compactMap(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","title":"compactMap(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/compare(_:_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/compare(_:_:).json index 1c42969..992f4f3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/compare(_:_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/compare(_:_:).json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"lhs","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"ComparisonResult","kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier","text":"SortComparator"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":" == ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.compare(_:_:)"},{"text":".","type":"text"}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier","text":"Compared"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult"}],"externalID":"s:ST10FoundationE7compareySo18NSComparisonResultV8ComparedQyd___AFtAA14SortComparatorRd__7ElementQzRsd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"compare(_:_:)","platforms":[{"introducedAt":"15.0","deprecated":false,"beta":false,"name":"iOS","unavailable":false},{"beta":false,"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"12.0"},{"introducedAt":"15.0","name":"tvOS","beta":false,"deprecated":false,"unavailable":false},{"name":"watchOS","beta":false,"unavailable":false,"introducedAt":"8.0","deprecated":false}],"roleHeading":"Instance Method","symbolKind":"method","role":"symbol","extendedModule":"Swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compare(_:_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"compare(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)"},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method","externalID":"s:ST10FoundationE7compareySo18NSComparisonResultV8ComparedQyd___AFtAA14SortComparatorRd__7ElementQzRsd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"compare"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult"}],"title":"compare(_:_:)","platforms":[{"introducedAt":"15.0","unavailable":false,"name":"iOS","deprecated":false,"beta":false},{"name":"macOS","unavailable":false,"deprecated":false,"beta":false,"introducedAt":"12.0"},{"beta":false,"unavailable":false,"deprecated":false,"introducedAt":"15.0","name":"tvOS"},{"unavailable":false,"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"8.0"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.compare(_:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"compare"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"lhs"},{"text":": ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","kind":"typeIdentifier","text":"Compared"},{"kind":"text","text":", "},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"rhs","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"Comparator","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"SortComparator","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compare(_:_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"compare(_:_:)","role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/contains(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/contains(_:).json index 8d74563..53abca3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/contains(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/contains(_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.contains(_:)","type":"codeVoice"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"roleHeading":"Instance Method","title":"contains(_:)","externalID":"s:STsSQ7ElementRpzrlE8containsySbABF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","role":"symbol","title":"contains(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.contains(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)"]}],"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsSQ7ElementRpzrlE8containsySbABF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"title":"contains(_:)"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","title":"contains(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/contains(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/contains(where:).json index 2984895..1674fec 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/contains(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/contains(where:).json @@ -1 +1 @@ -{"metadata":{"roleHeading":"Instance Method","role":"symbol","title":"contains(where:)","externalID":"s:STsE8contains5whereS2b7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.contains(where:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"languages":["swift"],"platforms":["macOS"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(where:)":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","title":"contains(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"externalID":"s:STsE8contains5whereS2b7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","symbolKind":"method","extendedModule":"Swift","title":"contains(where:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.contains(where:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(where:)":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","type":"topic","title":"contains(where:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/count(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/count(where:).json index d507159..dd5040d 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/count(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/count(where:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"title":"count(where:)","externalID":"s:STsE5count5whereSiSb7ElementQzqd__YKXE_tqd__YKs5ErrorRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.count(where:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":" : ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","title":"count(where:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"roleHeading":"Instance Method","symbolKind":"method","title":"count(where:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"extendedModule":"Swift","role":"symbol","externalID":"s:STsE5count5whereSiSb7ElementQzqd__YKXE_tqd__YKs5ErrorRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"kind":"text","text":"<"},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"}]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.count(where:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count(where:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"kind":"symbol","title":"count(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/count.json b/docs/data/documentation/bigint/biguint/words-swift.struct/count.json index 509c3ec..690a6cd 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/count.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/count.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.count"},{"type":"text","text":"."}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count"},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:SlsE5countSivp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"count","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"symbolKind":"property","role":"symbol","title":"count"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/count"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"title":"count","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Property","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"count","symbolKind":"property","role":"symbol","externalID":"s:SlsE5countSivp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.count"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"count"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"sections":[],"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/count"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count","title":"count","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"count"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:).json index 298097c..cdbf9c4 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"role":"symbol","title":"difference(from:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">","kind":"text"}],"platforms":[{"unavailable":false,"name":"iOS","introducedAt":"13.0","deprecated":false,"beta":false},{"name":"macOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"10.15"},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"name":"watchOS","introducedAt":"6.0","unavailable":false,"deprecated":false,"beta":false}],"roleHeading":"Instance Method","extendedModule":"Swift","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"externalID":"s:SKsSQ7ElementRpzrlE10difference4froms20CollectionDifferenceVyABGqd___tSKRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:)"},{"type":"text","text":"."}],"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"difference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":" : "},{"text":"BidirectionalCollection","kind":"typeIdentifier","preciseIdentifier":"s:SK"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:)":{"title":"difference(from:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"kind":"symbol","type":"topic","role":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"metadata":{"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"difference(from:)","roleHeading":"Instance Method","externalID":"s:SKsSQ7ElementRpzrlE10difference4froms20CollectionDifferenceVyABGqd___tSKRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s20CollectionDifferenceV","text":"CollectionDifference","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">","kind":"text"}],"platforms":[{"unavailable":false,"introducedAt":"13.0","beta":false,"deprecated":false,"name":"iOS"},{"deprecated":false,"unavailable":false,"introducedAt":"10.15","name":"macOS","beta":false},{"introducedAt":"13.0","name":"tvOS","unavailable":false,"beta":false,"deprecated":false},{"deprecated":false,"introducedAt":"6.0","unavailable":false,"beta":false,"name":"watchOS"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"> "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"BidirectionalCollection","preciseIdentifier":"s:SK","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)","abstract":[],"role":"symbol","title":"difference(from:)","kind":"symbol","type":"topic","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:by:).json index 8a75a6b..1a8aac6 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/difference(from:by:).json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"areEquivalent","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"> "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SK","kind":"typeIdentifier","text":"BidirectionalCollection"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"}],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)"]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"from"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":[{"name":"iOS","deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"10.15","beta":false,"name":"macOS"},{"name":"tvOS","introducedAt":"13.0","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"beta":false,"introducedAt":"6.0","name":"watchOS","deprecated":false}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SKsE10difference4from2bys20CollectionDifferenceVy7ElementQzGqd___SbAG_AGtXEtSKRd__AFQyd__AGRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"difference(from:by:)","extendedModule":"Swift","role":"symbol","symbolKind":"method","roleHeading":"Instance Method"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.difference(from:by:)"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:by:)":{"type":"topic","kind":"symbol","abstract":[],"title":"difference(from:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier","text":"CollectionDifference"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":">"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areEquivalent"},{"kind":"text","text":": ("},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> "},{"text":"CollectionDifference","preciseIdentifier":"s:s20CollectionDifferenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"> ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"BidirectionalCollection","kind":"typeIdentifier","preciseIdentifier":"s:SK"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)"},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.difference(from:by:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"metadata":{"title":"difference(from:by:)","extendedModule":"Swift","role":"symbol","externalID":"s:SKsE10difference4from2bys20CollectionDifferenceVy7ElementQzGqd___SbAG_AGtXEtSKRd__AFQyd__AGRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"platforms":[{"unavailable":false,"introducedAt":"13.0","name":"iOS","deprecated":false,"beta":false},{"beta":false,"deprecated":false,"introducedAt":"10.15","unavailable":false,"name":"macOS"},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"13.0"},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"6.0","name":"watchOS"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"difference","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":">"}],"roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/difference(from:by:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/difference(from:by:)","title":"difference(from:by:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"difference"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") -> ","kind":"text"},{"text":"CollectionDifference","kind":"typeIdentifier","preciseIdentifier":"s:s20CollectionDifferenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/drop(while:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/drop(while:).json index 1fd60c0..8f8afa1 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/drop(while:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/drop(while:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"drop","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"title":"drop(while:)","role":"symbol","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"Swift","externalID":"s:SlsE4drop5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.drop(while:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"drop","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"while"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/drop(while:)":{"title":"drop(while:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.drop(while:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"drop","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"role":"symbol","externalID":"s:SlsE4drop5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"drop(while:)","symbolKind":"method","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"extendedModule":"Swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/drop(while:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"drop"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"title":"drop(while:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/drop(while:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/dropfirst(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/dropfirst(_:).json index 677a9d9..c7a7cc6 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/dropfirst(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/dropfirst(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"k","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" = 1) -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.dropFirst(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)"},"metadata":{"title":"dropFirst(_:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SlsE9dropFirsty11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropFirst(_:)":{"kind":"symbol","title":"dropFirst(_:)","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)"},"metadata":{"title":"dropFirst(_:)","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","role":"symbol","externalID":"s:SlsE9dropFirsty11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.dropFirst(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"k","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" = 1) -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)"]}],"sections":[],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropFirst(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"dropFirst","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropFirst(_:)","title":"dropFirst(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/droplast(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/droplast(_:).json index 79bd52f..c07ac24 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/droplast(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/droplast(_:).json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","title":"dropLast(_:)","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"role":"symbol","externalID":"s:SKsE8dropLasty11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"k","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.dropLast(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropLast(_:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","abstract":[],"type":"topic","title":"dropLast(_:)"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"k","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}]}]}],"kind":"symbol","sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"dropLast(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"dropLast"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"extendedModule":"Swift","externalID":"s:SKsE8dropLasty11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.dropLast(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/dropLast(_:)":{"abstract":[],"kind":"symbol","title":"dropLast(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/dropLast(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"dropLast","kind":"identifier"},{"kind":"text","text":"("},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:).json index d6da38d..3c944e3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.elementsEqual(_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"roleHeading":"Instance Method","title":"elementsEqual(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"symbolKind":"method","externalID":"s:STsSQ7ElementRpzrlE13elementsEqualySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"extendedModule":"Swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","title":"elementsEqual(_:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.elementsEqual(_:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"externalID":"s:STsSQ7ElementRpzrlE13elementsEqualySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"elementsEqual(_:)","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","interfaceLanguage":"swift"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"elementsEqual(_:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:).json index 9c00df2..17c431e 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"kind":"text","text":": "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"areEquivalent","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:ST"}]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"roleHeading":"Instance Method","title":"elementsEqual(_:by:)","externalID":"s:STsE13elementsEqual_2bySbqd___Sb7ElementQz_ACQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.elementsEqual(_:by:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:by:)":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","title":"elementsEqual(_:by:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areEquivalent","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":" : ","kind":"text"},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"minor":3,"major":0,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","interfaceLanguage":"swift"},"metadata":{"symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"elementsEqual"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol","title":"elementsEqual(_:by:)","extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE13elementsEqual_2bySbqd___Sb7ElementQz_ACQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.elementsEqual(_:by:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:by:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","title":"elementsEqual(_:by:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/endindex.json b/docs/data/documentation/bigint/biguint/words-swift.struct/endindex.json index cf50ffd..d55c13e 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/endindex.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/endindex.json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.endIndex"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"endIndex"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/endindex"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"endIndex","symbolKind":"property","role":"symbol","externalID":"s:6BigInt0A4UIntV5WordsV8endIndexSivp","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"modules":[{"name":"BigInt"}],"roleHeading":"Instance Property"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/endIndex":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","abstract":[],"title":"endIndex","type":"topic","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","kind":"symbol","role":"symbol"}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.endIndex","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"symbolKind":"property","externalID":"s:6BigInt0A4UIntV5WordsV8endIndexSivp","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"endIndex"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"role":"symbol","roleHeading":"Instance Property","title":"endIndex","modules":[{"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/endindex"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/endIndex":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/endIndex","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","abstract":[],"type":"topic","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"endIndex","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"kind":"symbol","title":"endIndex"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/enumerated().json b/docs/data/documentation/bigint/biguint/words-swift.struct/enumerated().json index 0d8fec5..385fc7f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/enumerated().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/enumerated().json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","metadata":{"extendedModule":"Swift","externalID":"s:STsE10enumerateds18EnumeratedSequenceVyxGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"enumerated()","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"enumerated"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"enumerated","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"EnumeratedSequence","kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.enumerated()"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/enumerated()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","abstract":[],"title":"enumerated()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"enumerated"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"EnumeratedSequence","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.enumerated()"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"symbolKind":"method","roleHeading":"Instance Method","extendedModule":"Swift","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"enumerated"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"externalID":"s:STsE10enumerateds18EnumeratedSequenceVyxGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"enumerated()"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18EnumeratedSequenceV","text":"EnumeratedSequence","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/enumerated()":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"EnumeratedSequence","kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol","title":"enumerated()"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc.json b/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc.json index 9731e15..a9fa5ea 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc.json @@ -1 +1 @@ -{"sections":[],"metadata":{"title":"filter(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"roleHeading":"Instance Method","extendedModule":"Swift","symbolKind":"method","externalID":"s:STsE6filterySay7ElementQzGSbACKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"isIncluded","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.filter(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-1i5xc":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","abstract":[],"type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","interfaceLanguage":"swift"},"metadata":{"title":"filter(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"extendedModule":"Swift","externalID":"s:STsE6filterySay7ElementQzGSbACKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isIncluded"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.filter(_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-1i5xc":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","title":"filter(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c.json b/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c.json index 9905e70..78c5fd5 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c.json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"extendedModule":"Swift","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"17.0","deprecated":false},{"beta":false,"introducedAt":"14.0","unavailable":false,"name":"macOS","deprecated":false},{"deprecated":false,"name":"tvOS","introducedAt":"17.0","unavailable":false,"beta":false},{"beta":false,"introducedAt":"10.0","name":"watchOS","unavailable":false,"deprecated":false}],"symbolKind":"method","title":"filter(_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","externalID":"s:ST10FoundationE6filterySay7ElementQzGAA9PredicateVyAD_QPGKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Predicate","preciseIdentifier":"s:10Foundation9PredicateV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}]}]}],"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.filter(_:)"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-b54c":{"kind":"symbol","role":"symbol","type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"filter","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c"},"metadata":{"extendedModule":"Swift","title":"filter(_:)","platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"17.0"},{"unavailable":false,"beta":false,"name":"macOS","deprecated":false,"introducedAt":"14.0"},{"name":"tvOS","introducedAt":"17.0","unavailable":false,"deprecated":false,"beta":false},{"beta":false,"introducedAt":"10.0","deprecated":false,"name":"watchOS","unavailable":false}],"symbolKind":"method","externalID":"s:ST10FoundationE6filterySay7ElementQzGAA9PredicateVyAD_QPGKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.filter(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-b54c":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","kind":"typeIdentifier","text":"Predicate"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"kind":"symbol","title":"filter(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/first(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/first(where:).json index 152e60d..40a59ef 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/first(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/first(where:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.first(where:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"role":"symbol","externalID":"s:STsE5first5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"first(where:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"roleHeading":"Instance Method"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","kind":"article","abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","role":"collectionGroup"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","abstract":[],"title":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt","type":"topic","role":"collection","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Words","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct","kind":"symbol","title":"BigUInt.Words","navigatorTitle":[{"text":"Words","kind":"identifier"}],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first(where:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"title":"first(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"role":"symbol","extendedModule":"Swift","externalID":"s:STsE5first5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"first","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"first(where:)","symbolKind":"method"},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.first(where:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first(where:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"kind":"symbol","title":"first(where:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/first.json b/docs/data/documentation/bigint/biguint/words-swift.struct/first.json index c401bbf..dfcef97 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/first.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/first.json @@ -1 +1 @@ -{"metadata":{"role":"symbol","externalID":"s:SlsE5first7ElementQzSgvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"property","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Property","title":"first","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/first"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first"},"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.first"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","kind":"symbol","abstract":[],"title":"first","role":"symbol","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"metadata":{"title":"first","extendedModule":"Swift","externalID":"s:SlsE5first7ElementQzSgvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"symbolKind":"property","roleHeading":"Instance Property"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/first"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.first","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"kind":"identifier","text":"first"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"? { ","kind":"text"},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first","title":"first","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"first"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(of:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(of:).json index 8b107bb..dcf72cc 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(of:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(of:).json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"externalID":"s:SlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","symbolKind":"method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"roleHeading":"Instance Method","title":"firstIndex(of:)","extendedModule":"Swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.firstIndex(of:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(of:)":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"firstIndex(of:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"firstIndex(of:)","roleHeading":"Instance Method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"externalID":"s:SlsSQ7ElementRpzrlE10firstIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.firstIndex(of:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(of:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(of:)","kind":"symbol","title":"firstIndex(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(where:).json index c1a606b..c81928f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/firstindex(where:).json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":"?"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.firstIndex(where:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"role":"symbol","externalID":"s:SlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","title":"firstIndex(where:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)"},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","type":"topic","abstract":[],"title":"firstIndex(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)"},"metadata":{"title":"firstIndex(where:)","extendedModule":"Swift","externalID":"s:SlsE10firstIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method"},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.firstIndex(where:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstIndex(where:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstIndex(where:)","title":"firstIndex(where:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo.json b/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo.json index e818a64..a192679 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","title":"firstRange(of:)","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"name":"iOS","introducedAt":"16.0","deprecated":false},{"name":"macOS","beta":false,"introducedAt":"13.0","deprecated":false,"unavailable":false},{"introducedAt":"16.0","deprecated":false,"unavailable":false,"beta":false,"name":"tvOS"},{"beta":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"deprecated":false}],"externalID":"s:SK17_StringProcessingSL7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">?","kind":"text"}],"role":"symbol","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"roleHeading":"Instance Method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.firstRange(of:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Range","preciseIdentifier":"s:Sn"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">? "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"text":"Collection","kind":"typeIdentifier","preciseIdentifier":"s:Sl"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-4avlo":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","role":"symbol","title":"firstRange(of:)","type":"topic","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">?"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">? "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Collection","preciseIdentifier":"s:Sl","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"kind":"symbol","metadata":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}]},"title":"firstRange(of:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"extendedModule":"Swift","externalID":"s:SK17_StringProcessingSL7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","platforms":[{"deprecated":false,"beta":false,"name":"iOS","introducedAt":"16.0","unavailable":false},{"deprecated":false,"name":"macOS","introducedAt":"13.0","unavailable":false,"beta":false},{"name":"tvOS","introducedAt":"16.0","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"name":"watchOS","introducedAt":"9.0","unavailable":false,"beta":false}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.firstRange(of:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-4avlo":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"title":"firstRange(of:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">?","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-4avlo","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2.json b/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2.json index 34c69de..4fa11df 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">? "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Collection","kind":"typeIdentifier","preciseIdentifier":"s:Sl"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"languages":["swift"]}]}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"roleHeading":"Instance Method","platforms":[{"introducedAt":"16.0","name":"iOS","deprecated":false,"unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"introducedAt":"13.0","name":"macOS","beta":false},{"name":"tvOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"16.0"},{"name":"watchOS","beta":false,"deprecated":false,"introducedAt":"9.0","unavailable":false}],"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"firstRange(of:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.firstRange(of:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-8gbi2":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","kind":"symbol","title":"firstRange(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"metadata":{"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE10firstRange2ofSny5IndexQzGSgqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">?"}],"role":"symbol","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","title":"firstRange(of:)","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"platforms":[{"beta":false,"introducedAt":"16.0","name":"iOS","deprecated":false,"unavailable":false},{"deprecated":false,"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"16.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"name":"watchOS","introducedAt":"9.0","unavailable":false,"deprecated":false,"beta":false}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"firstRange"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sn","text":"Range","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":">? ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:Sl","kind":"typeIdentifier","text":"Collection"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"C","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2"]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.firstRange(of:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/firstRange(of:)-8gbi2":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"firstRange","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"C"},{"text":") -> ","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">?"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/firstRange(of:)-8gbi2","kind":"symbol","title":"firstRange(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h.json b/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h.json index 098bbce..99de81c 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h.json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"kind":"text","text":"<"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Please use compactMap(_:) for the case where closure returns an optional value"}]}],"kind":"symbol","metadata":{"externalID":"s:STsE7flatMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"text":"ElementOfResult","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"title":"flatMap(_:)","extendedModule":"Swift","role":"symbol","platforms":[],"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.flatMap(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-5v20h":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","role":"symbol","deprecated":true,"type":"topic","title":"flatMap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"transform"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}]}],"kind":"declarations"}],"metadata":{"title":"flatMap(_:)","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","role":"symbol","platforms":[],"externalID":"s:STsE7flatMapySayqd__Gqd__Sg7ElementQzKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"deprecationSummary":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Please use compactMap(_:) for the case where closure returns an optional value"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.flatMap(_:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","interfaceLanguage":"swift"},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-5v20h":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","deprecated":true,"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"kind":"symbol","title":"flatMap(_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh.json b/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh.json index 31fa4b9..bb8611e 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","metadata":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"SegmentOfResult"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"symbolKind":"method","extendedModule":"Swift","externalID":"s:STsE7flatMapySay7ElementQyd__Gqd__ABQzKXEKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","title":"flatMap(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"SegmentOfResult"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":" : ","kind":"text"},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"}],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.flatMap(_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-6lwxh":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"text":"SegmentOfResult","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","title":"flatMap(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"externalID":"s:STsE7flatMapySay7ElementQyd__Gqd__ABQzKXEKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","title":"flatMap(_:)","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"SegmentOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"SegmentOfResult"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"extendedModule":"Swift"},"sections":[],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"kind":"text","text":"<"},{"text":"SegmentOfResult","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.flatMap(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-6lwxh":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"SegmentOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","type":"topic","kind":"symbol","title":"flatMap(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/foreach(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/foreach(_:).json index d2d61d2..d2fc09a 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/foreach(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/foreach(_:).json @@ -1 +1 @@ -{"metadata":{"role":"symbol","symbolKind":"method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s4Voida","text":"Void"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:STsE7forEachyyy7ElementQzKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"forEach(_:)","roleHeading":"Instance Method"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"}]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)"]}],"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.forEach(_:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/forEach(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","title":"forEach(_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"forEach"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"body"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}]}]}],"metadata":{"roleHeading":"Instance Method","extendedModule":"Swift","title":"forEach(_:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Void","preciseIdentifier":"s:s4Voida"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"}],"externalID":"s:STsE7forEachyyy7ElementQzKXEKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)"]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.forEach(_:)"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/forEach(_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"kind":"symbol","title":"forEach(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/formatted(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/formatted(_:).json index f353021..283ad3e 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/formatted(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/formatted(_:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"extendedModule":"Swift","platforms":[{"name":"iOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"15.0"},{"deprecated":false,"name":"macOS","unavailable":false,"introducedAt":"12.0","beta":false},{"unavailable":false,"introducedAt":"15.0","deprecated":false,"name":"tvOS","beta":false},{"name":"watchOS","deprecated":false,"beta":false,"introducedAt":"8.0","unavailable":false}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"}],"title":"formatted(_:)","externalID":"s:ST10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.formatted(_:)"},{"type":"text","text":"."}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"style","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","text":"FormatOutput","kind":"typeIdentifier"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatInput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP","text":"FormatStyle","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formatted(_:)":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","title":"formatted(_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.formatted(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"style","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier","text":"FormatOutput"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation11FormatStyleP0B5InputQa","kind":"typeIdentifier","text":"FormatInput"},{"text":", ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"FormatStyle","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"symbolKind":"method","title":"formatted(_:)","externalID":"s:ST10FoundationE9formattedy12FormatOutputQyd__qd__0C5InputQyd__RszAA0C5StyleRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","platforms":[{"unavailable":false,"beta":false,"introducedAt":"15.0","name":"iOS","deprecated":false},{"deprecated":false,"unavailable":false,"introducedAt":"12.0","name":"macOS","beta":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"15.0","name":"tvOS"},{"beta":false,"deprecated":false,"unavailable":false,"name":"watchOS","introducedAt":"8.0"}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"kind":"text","text":">("},{"text":"S","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)"},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formatted(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","title":"formatted(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:).json index 43bdcaa..7daf7c9 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:).json @@ -1 +1 @@ -{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":")"}],"externalID":"s:SlsE9formIndex_8offsetByy0B0Qzz_SitF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","symbolKind":"method","title":"formIndex(_:offsetBy:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.formIndex(_:offsetBy:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"i","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"distance"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:)":{"kind":"symbol","title":"formIndex(_:offsetBy:)","abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.formIndex(_:offsetBy:)"},{"type":"text","text":"."}],"metadata":{"externalID":"s:SlsE9formIndex_8offsetByy0B0Qzz_SitF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","symbolKind":"method","title":"formIndex(_:offsetBy:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"role":"symbol"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)"]}],"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":" ","kind":"text"},{"text":"distance","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":")"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:)","title":"formIndex(_:offsetBy:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":")","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:).json index 72774dc..ffb121f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:).json @@ -1 +1 @@ -{"sections":[],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"distance","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"limit"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.formIndex(_:offsetBy:limitedBy:)","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","title":"formIndex(_:offsetBy:limitedBy:)","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","externalID":"s:SlsE9formIndex_8offsetBy07limitedD0Sb0B0Qzz_SiAEtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method"},"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"title":"formIndex(_:offsetBy:limitedBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","kind":"symbol","role":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"kind":"text","text":" "},{"text":"distance","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":" ","kind":"text"},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"platforms":["macOS"],"languages":["swift"]}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.formIndex(_:offsetBy:limitedBy:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)"]}],"metadata":{"role":"symbol","externalID":"s:SlsE9formIndex_8offsetBy07limitedD0Sb0B0Qzz_SiAEtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"limitedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"formIndex(_:offsetBy:limitedBy:)","symbolKind":"method"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(_:offsetBy:limitedBy:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(_:offsetBy:limitedBy:)","kind":"symbol","title":"formIndex(_:offsetBy:limitedBy:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(after:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(after:).json index 62ef327..8d296bf 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(after:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(after:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.formIndex(after:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"after"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":")","kind":"text"}],"externalID":"s:SlsE9formIndex5aftery0B0Qzz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"formIndex(after:)","symbolKind":"method"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(after:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"after"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"abstract":[],"role":"symbol","kind":"symbol","title":"formIndex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"text":"after","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"i","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)"]}],"metadata":{"roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"after"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"formIndex(after:)","role":"symbol","extendedModule":"Swift","externalID":"s:SlsE9formIndex5aftery0B0Qzz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)","interfaceLanguage":"swift"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.formIndex(after:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(after:)":{"title":"formIndex(after:)","kind":"symbol","type":"topic","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"after","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(after:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(before:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(before:).json index ef9fe96..ed47952 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(before:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/formindex(before:).json @@ -1 +1 @@ -{"metadata":{"extendedModule":"Swift","externalID":"s:SKsE9formIndex6beforey0B0Qzz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","role":"symbol","roleHeading":"Instance Method","title":"formIndex(before:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":")","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"kind":"text","text":" "},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.formIndex(before:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(before:)":{"type":"topic","kind":"symbol","abstract":[],"title":"formIndex(before:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"}}} \ No newline at end of file +{"metadata":{"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"formIndex(before:)","roleHeading":"Instance Method","externalID":"s:SKsE9formIndex6beforey0B0Qzz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"before","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)"},"kind":"symbol","sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.formIndex(before:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"text":"before","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":")","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formIndex(before:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formIndex(before:)","title":"formIndex(before:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"before"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":")"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:).json index 78c2815..2ce6e07 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:).json @@ -1 +1 @@ -{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RandomAccessCollection.index(_:offsetBy:limitedBy:)"},{"type":"text","text":"."}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"i"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"kind":"text","text":" "},{"text":"distance","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"limit","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"offsetBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","role":"symbol","externalID":"s:SksE5index_8offsetBy07limitedC05IndexQzSgAE_SiAEtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"index(_:offsetBy:limitedBy:)","roleHeading":"Instance Method","symbolKind":"method"},"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/RandomAccessCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","abstract":[],"title":"RandomAccessCollection Implementations","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations","kind":"article","role":"collectionGroup"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"index(_:offsetBy:limitedBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"RandomAccessCollection.index(_:offsetBy:limitedBy:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"i","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"distance","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"limit","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)"]}],"metadata":{"title":"index(_:offsetBy:limitedBy:)","extendedModule":"Swift","externalID":"s:SksE5index_8offsetBy07limitedC05IndexQzSgAE_SiAEtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"limitedBy"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"symbolKind":"method","roleHeading":"Instance Method"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"type":"topic","title":"index(_:offsetBy:limitedBy:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/RandomAccessCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","role":"collectionGroup","type":"topic","abstract":[],"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/index(of:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/index(of:).json index 211251c..4e71030 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/index(of:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/index(of:).json @@ -1 +1 @@ -{"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.index(of:)"},{"text":".","type":"text"}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"platforms":[],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"externalID":"s:SlsSQ7ElementRpzrlE5index2of5IndexQzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"index(of:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"element"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"languages":["swift"]}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(of:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)","abstract":[],"title":"index(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"deprecated":true,"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.index(of:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)"]}],"metadata":{"externalID":"s:SlsSQ7ElementRpzrlE5index2of5IndexQzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"index(of:)","role":"symbol","symbolKind":"method","extendedModule":"Swift","platforms":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}],"roleHeading":"Instance Method","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"element"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"title":"index(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"deprecated":true,"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/indices(of:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/indices(of:).json index eb33fa6..b4e5c84 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/indices(of:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/indices(of:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"platforms":[{"deprecated":false,"name":"iOS","unavailable":false,"beta":false,"introducedAt":"18.0"},{"unavailable":false,"introducedAt":"15.0","beta":false,"name":"macOS","deprecated":false},{"name":"tvOS","introducedAt":"18.0","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"beta":false,"introducedAt":"11.0","name":"watchOS","unavailable":false},{"unavailable":false,"beta":false,"introducedAt":"2.0","deprecated":false,"name":"visionOS"}],"roleHeading":"Instance Method","extendedModule":"Swift","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"role":"symbol","externalID":"s:SlsSQ7ElementRpzrlE7indices2ofs8RangeSetVy5IndexQzGAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"indices(of:)","symbolKind":"method"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.indices(of:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(of:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">","kind":"text"}],"abstract":[],"title":"indices(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","kind":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]}},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.indices(of:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:s8RangeSetV","text":"RangeSet","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"platforms":[{"beta":false,"unavailable":false,"introducedAt":"18.0","deprecated":false,"name":"iOS"},{"name":"macOS","beta":false,"introducedAt":"15.0","deprecated":false,"unavailable":false},{"name":"tvOS","unavailable":false,"beta":false,"deprecated":false,"introducedAt":"18.0"},{"beta":false,"name":"watchOS","deprecated":false,"introducedAt":"11.0","unavailable":false},{"beta":false,"deprecated":false,"name":"visionOS","introducedAt":"2.0","unavailable":false}],"role":"symbol","extendedModule":"Swift","externalID":"s:SlsSQ7ElementRpzrlE7indices2ofs8RangeSetVy5IndexQzGAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"indices(of:)","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">","kind":"text"}],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]}},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(of:)","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"title":"indices(of:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":">"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/indices(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/indices(where:).json index cf7689d..4c0ad54 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/indices(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/indices(where:).json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"predicate"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)"},"metadata":{"platforms":[{"name":"iOS","beta":false,"introducedAt":"18.0","unavailable":false,"deprecated":false},{"beta":false,"name":"macOS","unavailable":false,"introducedAt":"15.0","deprecated":false},{"deprecated":false,"introducedAt":"18.0","name":"tvOS","unavailable":false,"beta":false},{"name":"watchOS","deprecated":false,"beta":false,"introducedAt":"11.0","unavailable":false},{"name":"visionOS","unavailable":false,"introducedAt":"2.0","beta":false,"deprecated":false}],"extendedModule":"Swift","role":"symbol","roleHeading":"Instance Method","title":"indices(where:)","externalID":"s:SlsE7indices5wheres8RangeSetVy5IndexQzGSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":">"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.indices(where:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(where:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)","title":"indices(where:)","abstract":[],"kind":"symbol","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.indices(where:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)","interfaceLanguage":"swift"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"indices"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV","text":"RangeSet"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","externalID":"s:SlsE7indices5wheres8RangeSetVy5IndexQzGSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","roleHeading":"Instance Method","platforms":[{"introducedAt":"18.0","unavailable":false,"name":"iOS","deprecated":false,"beta":false},{"introducedAt":"15.0","unavailable":false,"name":"macOS","deprecated":false,"beta":false},{"beta":false,"name":"tvOS","deprecated":false,"introducedAt":"18.0","unavailable":false},{"name":"watchOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"11.0"},{"unavailable":false,"name":"visionOS","introducedAt":"2.0","deprecated":false,"beta":false}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"RangeSet","preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"symbolKind":"method","title":"indices(where:)"},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/indices(where:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/indices(where:)","title":"indices(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"indices","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"RangeSet","kind":"typeIdentifier","preciseIdentifier":"s:s8RangeSetV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/isempty.json b/docs/data/documentation/bigint/biguint/words-swift.struct/isempty.json index 6062ea0..075550d 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/isempty.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/isempty.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.isEmpty","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"externalID":"s:SlsE7isEmptySbvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"property","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Property","title":"isEmpty","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEmpty","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/isempty"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"isEmpty"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/isEmpty":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","title":"isEmpty","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"isEmpty","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.isEmpty"},{"text":".","type":"text"}],"kind":"symbol","metadata":{"extendedModule":"Swift","title":"isEmpty","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE7isEmptySbvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"property","roleHeading":"Instance Property"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/isempty"]}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"isEmpty"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/isEmpty":{"title":"isEmpty","kind":"symbol","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"isEmpty","kind":"identifier"},{"kind":"text","text":": "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/isEmpty","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/last(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/last(where:).json index 004623c..aa3a061 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/last(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/last(where:).json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.last(where:)"},{"text":".","type":"text"}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":"("},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","externalID":"s:SKsE4last5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"last(where:)","extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)"]}],"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"last"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","abstract":[],"type":"topic","title":"last(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"predicate"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)"},"metadata":{"title":"last(where:)","role":"symbol","externalID":"s:SKsE4last5where7ElementQzSgSbADKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"last"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","extendedModule":"Swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.last(where:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last(where:)":{"type":"topic","abstract":[],"kind":"symbol","title":"last(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last(where:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/last.json b/docs/data/documentation/bigint/biguint/words-swift.struct/last.json index 3cf8518..82af5b3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/last.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/last.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"? { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/last"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last","interfaceLanguage":"swift"},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"last","externalID":"s:SKsE4last7ElementQzSgvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"property"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.last"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last","abstract":[],"role":"symbol","kind":"symbol","title":"last","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/last"]}],"metadata":{"extendedModule":"Swift","roleHeading":"Instance Property","title":"last","role":"symbol","symbolKind":"property","externalID":"s:SKsE4last7ElementQzSgvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"?"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"last","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"? { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.last"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/last":{"title":"last","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"last"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","type":"topic","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/last"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(of:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(of:).json index cc5c8eb..8a82cb3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(of:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(of:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"metadata":{"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"externalID":"s:SKsSQ7ElementRpzrlE9lastIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","symbolKind":"method","title":"lastIndex(of:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"extendedModule":"Swift"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.lastIndex(of:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"of","kind":"externalParam"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(of:)":{"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}],"title":"lastIndex(of:)","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"title":"lastIndex(of:)","roleHeading":"Instance Method","extendedModule":"Swift","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"role":"symbol","externalID":"s:SKsSQ7ElementRpzrlE9lastIndex2of0C0QzSgAB_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"lastIndex"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","interfaceLanguage":"swift"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.lastIndex(of:)"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"kind":"text","text":" "},{"text":"element","kind":"internalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":"?"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(of:)","abstract":[],"role":"symbol","kind":"symbol","type":"topic","title":"lastIndex(of:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lastIndex"},{"kind":"text","text":"("},{"kind":"externalParam","text":"of"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(where:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(where:).json index 94d8543..32afe8f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(where:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/lastindex(where:).json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"metadata":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":"?","kind":"text"}],"externalID":"s:SKsE9lastIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"lastIndex(where:)","roleHeading":"Instance Method","extendedModule":"Swift","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.lastIndex(where:)"},{"text":".","type":"text"}],"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(where:)":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","abstract":[],"role":"symbol","kind":"symbol","title":"lastIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":"?","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"BidirectionalCollection.lastIndex(where:)","type":"codeVoice"},{"type":"text","text":"."}],"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)"]}],"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":"?"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)"},"metadata":{"roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"externalID":"s:SKsE9lastIndex5where0B0QzSgSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"lastIndex(where:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lastIndex(where:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lastIndex","kind":"identifier"},{"text":"(","kind":"text"},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lastIndex(where:)","abstract":[],"role":"symbol","kind":"symbol","title":"lastIndex(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/lazy.json b/docs/data/documentation/bigint/biguint/words-swift.struct/lazy.json index 7d03ba2..91bbcf3 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/lazy.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/lazy.json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.lazy"},{"text":".","type":"text"}],"metadata":{"externalID":"s:STsE4lazys12LazySequenceVyxGvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","title":"lazy","roleHeading":"Instance Property","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"lazy","kind":"identifier"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"symbolKind":"property"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"lazy","kind":"identifier"},{"kind":"text","text":": "},{"text":"LazySequence","kind":"typeIdentifier","preciseIdentifier":"s:s12LazySequenceV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"> { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lazy"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lazy":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","title":"lazy","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lazy"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","metadata":{"externalID":"s:STsE4lazys12LazySequenceVyxGvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"property","roleHeading":"Instance Property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lazy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"title":"lazy","role":"symbol","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"lazy","kind":"identifier"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s12LazySequenceV","text":"LazySequence"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"> { "},{"kind":"keyword","text":"get"},{"text":" }","kind":"text"}],"platforms":["macOS"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.lazy"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lazy","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier","text":"LazySequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"type":"topic","title":"lazy","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:).json index 8aebc2f..32d56cc 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}]}],"kind":"declarations"}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)"},"sections":[],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.lexicographicallyPrecedes(_:)"},{"type":"text","text":"."}],"metadata":{"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"title":"lexicographicallyPrecedes(_:)","roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","externalID":"s:STsSL7ElementRpzrlE25lexicographicallyPrecedesySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]}},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","title":"lexicographicallyPrecedes(_:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:ST"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"}]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.lexicographicallyPrecedes(_:)"},{"text":".","type":"text"}],"metadata":{"title":"lexicographicallyPrecedes(_:)","roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"role":"symbol","externalID":"s:STsSL7ElementRpzrlE25lexicographicallyPrecedesySbqd__STRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","type":"topic","title":"lexicographicallyPrecedes(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:).json index d81d451..2ef8fc5 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":" "},{"text":"areInIncreasingOrder","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"platforms":["macOS"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.lexicographicallyPrecedes(_:by:)"},{"text":".","type":"text"}],"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"externalID":"s:STsE25lexicographicallyPrecedes_2bySbqd___Sb7ElementQz_ADtKXEtKSTRd__ACQyd__ADRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"lexicographicallyPrecedes(_:by:)","role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","role":"symbol","title":"lexicographicallyPrecedes(_:by:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:STsE25lexicographicallyPrecedes_2bySbqd___Sb7ElementQz_ADtKXEtKSTRd__ACQyd__ADRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"lexicographicallyPrecedes(_:by:)","role":"symbol","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.lexicographicallyPrecedes(_:by:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":" : ","kind":"text"},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":" == ","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"title":"lexicographicallyPrecedes(_:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/makeiterator().json b/docs/data/documentation/bigint/biguint/words-swift.struct/makeiterator().json index 6af257a..9805493 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/makeiterator().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/makeiterator().json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.makeIterator()","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"makeIterator","kind":"identifier"},{"kind":"text","text":"() -> "},{"preciseIdentifier":"s:s16IndexingIteratorV","text":"IndexingIterator","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"metadata":{"extendedModule":"Swift","symbolKind":"method","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Iterator","type":"codeVoice"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"makeIterator","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s16IndexingIteratorV","kind":"typeIdentifier","text":"IndexingIterator"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"roleHeading":"Instance Method","role":"symbol","title":"makeIterator()","externalID":"s:Slss16IndexingIteratorVyxG0B0RtzrlE04makeB0ACyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/makeIterator()":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"text":"IndexingIterator","kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","title":"makeIterator()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()","abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"type":"codeVoice","code":"IndexingIterator"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.makeIterator()"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"makeIterator","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV","text":"IndexingIterator"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Iterator","type":"codeVoice"},{"text":" is ","type":"text"},{"type":"codeVoice","code":"IndexingIterator"},{"type":"text","text":"."}]},"symbolKind":"method","title":"makeIterator()","externalID":"s:Slss16IndexingIteratorVyxG0B0RtzrlE04makeB0ACyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"makeIterator","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s16IndexingIteratorV","text":"IndexingIterator"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/makeIterator()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/makeIterator()","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Iterator"},{"type":"text","text":" is "},{"code":"IndexingIterator","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"title":"makeIterator()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"makeIterator"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"IndexingIterator","preciseIdentifier":"s:s16IndexingIteratorV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5.json b/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5.json index d2655f3..79a02ff 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5.json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.map(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","interfaceLanguage":"swift"},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"map(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"role":"symbol","externalID":"s:STsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"] "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":" : ","kind":"text"},{"text":"Error","kind":"typeIdentifier","preciseIdentifier":"s:s5ErrorP"}]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-1jmt5":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","role":"symbol","title":"map(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"transform","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"E","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","interfaceLanguage":"swift"},"kind":"symbol","metadata":{"symbolKind":"method","roleHeading":"Instance Method","role":"symbol","externalID":"s:STsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"map(_:)","extendedModule":"Swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.map(_:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-1jmt5":{"abstract":[],"title":"map(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g.json b/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g.json index 0d87d40..e4f4cff 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g.json @@ -1 +1 @@ -{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"transform","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:s5ErrorP","kind":"typeIdentifier","text":"Error"}],"languages":["swift"]}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}],"title":"map(_:)","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","extendedModule":"Swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.map(_:)"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-5b6g":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"title":"map(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","kind":"symbol","role":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE3mapySayqd__Gqd__7ElementQzqd_0_YKXEqd_0_YKs5ErrorRd_0_r0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"symbolKind":"method","role":"symbol","extendedModule":"Swift","title":"map(_:)","roleHeading":"Instance Method"},"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.map(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"transform"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":"("},{"text":"E","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":"] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:s5ErrorP","text":"Error","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-5b6g":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"T","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":"]"}],"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-5b6g","kind":"symbol","title":"map(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/max().json b/docs/data/documentation/bigint/biguint/words-swift.struct/max().json index c5792f5..d6a99be 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/max().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/max().json @@ -1 +1 @@ -{"metadata":{"title":"max()","symbolKind":"method","role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"externalID":"s:STsSL7ElementRpzrlE3maxABSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/max()"]}],"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.max()"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max()":{"type":"topic","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","kind":"symbol","title":"max()","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"platforms":["macOS"]}]}],"kind":"symbol","metadata":{"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"max()","externalID":"s:STsSL7ElementRpzrlE3maxABSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/max()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.max()"},{"text":".","type":"text"}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","kind":"symbol","title":"max()","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/max(by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/max(by:).json index b41a5ca..0c64514 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/max(by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/max(by:).json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.max(by:)"},{"type":"text","text":"."}],"kind":"symbol","metadata":{"externalID":"s:STsE3max2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","title":"max(by:)","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"max"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areInIncreasingOrder"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max(by:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"title":"max(by:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"areInIncreasingOrder"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"platforms":["macOS"]}]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"role":"symbol","extendedModule":"Swift","externalID":"s:STsE3max2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"max(by:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.max(by:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max(by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","title":"max(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/min().json b/docs/data/documentation/bigint/biguint/words-swift.struct/min().json index e992bd8..3d8baaf 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/min().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/min().json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.min()"},{"type":"text","text":"."}],"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"min"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"roleHeading":"Instance Method","title":"min()","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:STsSL7ElementRpzrlE3minABSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"symbolKind":"method","role":"symbol"},"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/min()"]}],"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"attribute","text":"@warn_unqualified_access"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"min","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"type":"topic","title":"min()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"min"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/min()"]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"min()","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"min"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"role":"symbol","externalID":"s:STsSL7ElementRpzrlE3minABSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]}},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","interfaceLanguage":"swift"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.min()"},{"text":".","type":"text"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min()":{"title":"min()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/min(by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/min(by:).json index cef2310..38c2f94 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/min(by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/min(by:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","interfaceLanguage":"swift"},"metadata":{"title":"min(by:)","externalID":"s:STsE3min2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"symbolKind":"method"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.min(by:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"min","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areInIncreasingOrder"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"platforms":["macOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min(by:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","title":"min(by:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.min(by:)"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"@warn_unqualified_access","kind":"attribute"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"min","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":" "},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)"]}],"metadata":{"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"min"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"symbolKind":"method","externalID":"s:STsE3min2by7ElementQzSgSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"min(by:)","extendedModule":"Swift","roleHeading":"Instance Method"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min(by:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","title":"min(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(_:).json index e5edc53..4fa87ce 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(_:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.prefix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)"},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"maxLength","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","extendedModule":"Swift","externalID":"s:SlsE6prefixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","title":"prefix(_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(_:)":{"abstract":[],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)","title":"prefix(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"symbolKind":"method","role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method","title":"prefix(_:)","externalID":"s:SlsE6prefixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.prefix(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"maxLength"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(_:)","title":"prefix(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(through:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(through:).json index 35c21b7..abce9c7 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(through:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(through:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"through"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"title":"prefix(through:)","externalID":"s:SlsE6prefix7through11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.prefix(through:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"position"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(through:)":{"kind":"symbol","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"title":"prefix(through:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.prefix(through:)"},{"text":".","type":"text"}],"metadata":{"role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"through","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"externalID":"s:SlsE6prefix7through11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","title":"prefix(through:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"kind":"text","text":"("},{"kind":"externalParam","text":"through"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"position"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"platforms":["macOS"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)"]}],"kind":"symbol","schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(through:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(through:)","title":"prefix(through:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"through","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(upto:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(upto:).json index 74182cf..0f70f15 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(upto:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(upto:).json @@ -1 +1 @@ -{"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.prefix(upTo:)"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)"]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"roleHeading":"Instance Method","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","title":"prefix(upTo:)","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"upTo","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"externalID":"s:SlsE6prefix4upTo11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"upTo"},{"kind":"text","text":" "},{"text":"end","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"languages":["swift"],"platforms":["macOS"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(upTo:)":{"title":"prefix(upTo:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","kind":"symbol","abstract":[],"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"prefix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"upTo"},{"kind":"text","text":" "},{"kind":"internalParam","text":"end"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"languages":["swift"]}]}],"metadata":{"title":"prefix(upTo:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","extendedModule":"Swift","role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"upTo","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"externalID":"s:SlsE6prefix4upTo11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.prefix(upTo:)","type":"codeVoice"},{"type":"text","text":"."}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","interfaceLanguage":"swift"},"schemaVersion":{"minor":3,"patch":0,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(upTo:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"upTo"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(upTo:)","title":"prefix(upTo:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(while:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(while:).json index 53cae43..f8cf8e6 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(while:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/prefix(while:).json @@ -1 +1 @@ -{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"extendedModule":"Swift","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"role":"symbol","roleHeading":"Instance Method","externalID":"s:SlsE6prefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"prefix(while:)"},"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.prefix(while:)"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(while:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","role":"symbol","title":"prefix(while:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"}}} \ No newline at end of file +{"metadata":{"symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"prefix(while:)","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"externalID":"s:SlsE6prefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)"},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.prefix(while:)","type":"codeVoice"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"prefix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"while"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/prefix(while:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","abstract":[],"kind":"symbol","type":"topic","title":"prefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/prefix(while:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"prefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/publisher.json b/docs/data/documentation/bigint/biguint/words-swift.struct/publisher.json index 53b66e3..66a7267 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/publisher.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/publisher.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/publisher"]}],"sections":[],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"property","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"publisher"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Publishers","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":">","kind":"text"}],"title":"publisher","role":"symbol","extendedModule":"Swift","platforms":[{"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"13.0","beta":false},{"introducedAt":"10.15","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"unavailable":false,"beta":false,"name":"tvOS","introducedAt":"13.0","deprecated":false},{"deprecated":false,"beta":false,"unavailable":false,"name":"watchOS","introducedAt":"6.0"}],"externalID":"s:ST7CombineE9publisherAA10PublishersO8SequenceVy_xs5NeverOGvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Property"},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.publisher"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO","text":"Publishers","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Never","preciseIdentifier":"s:s5NeverO"},{"kind":"text","text":"> { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/publisher":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:7Combine10PublishersO8SequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","title":"publisher","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","interfaceLanguage":"swift"},"metadata":{"roleHeading":"Instance Property","role":"symbol","extendedModule":"Swift","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"text":".","kind":"text"},{"preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"kind":"text","text":">"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:ST7CombineE9publisherAA10PublishersO8SequenceVy_xs5NeverOGvp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"publisher","platforms":[{"introducedAt":"13.0","unavailable":false,"deprecated":false,"beta":false,"name":"iOS"},{"unavailable":false,"deprecated":false,"name":"macOS","beta":false,"introducedAt":"10.15"},{"beta":false,"introducedAt":"13.0","name":"tvOS","unavailable":false,"deprecated":false},{"introducedAt":"6.0","name":"watchOS","beta":false,"unavailable":false,"deprecated":false}],"symbolKind":"property"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":"> { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"],"platforms":["macOS"]}]}],"sections":[],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.publisher","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/publisher"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/publisher":{"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"text":">","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","title":"publisher","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations.json b/docs/data/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations.json index 803e445..e6271c0 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations.json @@ -1 +1 @@ -{"topicSections":[{"generated":true,"anchor":"Instance-Methods","title":"Instance Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"title":"RandomAccessCollection Implementations","role":"collectionGroup","roleHeading":"API Collection","modules":[{"name":"BigInt"}]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"type":"topic","kind":"symbol","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"index","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"limitedBy"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"title":"index(_:offsetBy:limitedBy:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"article","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/RandomAccessCollection-Implementations"},"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"topicSections":[{"generated":true,"title":"Instance Methods","anchor":"Instance-Methods","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)"]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"RandomAccessCollection Implementations","modules":[{"name":"BigInt"}],"role":"collectionGroup","roleHeading":"API Collection"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/index(_:offsetBy:limitedBy:)":{"type":"topic","title":"index(_:offsetBy:limitedBy:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"index"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":", "},{"text":"offsetBy","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"limitedBy","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/index(_:offsetBy:limitedBy:)","kind":"symbol","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement().json b/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement().json index 279ea30..3f15e03 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement().json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}]}]}],"metadata":{"title":"randomElement()","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","externalID":"s:SlsE13randomElement0B0QzSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","extendedModule":"Swift","role":"symbol"},"sections":[],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.randomElement()"},{"type":"text","text":"."}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"role":"symbol","navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","type":"topic","title":"BigUInt","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement()":{"title":"randomElement()","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"?","kind":"text"}],"abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"externalID":"s:SlsE13randomElement0B0QzSgyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","title":"randomElement()","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.randomElement()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","interfaceLanguage":"swift"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()"]}],"sections":[],"schemaVersion":{"major":0,"patch":0,"minor":3},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement()","title":"randomElement()","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement(using:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement(using:).json index acd9fa8..c1c13fc 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement(using:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/randomelement(using:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"title":"randomElement(using:)","externalID":"s:SlsE13randomElement5using0B0QzSgqd__z_tSGRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.randomElement(using:)","type":"codeVoice"},{"text":".","type":"text"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"randomElement"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"? "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"RandomNumberGenerator","preciseIdentifier":"s:SG","kind":"typeIdentifier"}]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement(using:)":{"kind":"symbol","type":"topic","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"title":"randomElement(using:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"metadata":{"title":"randomElement(using:)","role":"symbol","externalID":"s:SlsE13randomElement5using0B0QzSgqd__z_tSGRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"randomElement"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"?"}],"roleHeading":"Instance Method","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.randomElement(using:)","type":"codeVoice"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"generator"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"? "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":" : "},{"text":"RandomNumberGenerator","kind":"typeIdentifier","preciseIdentifier":"s:SG"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/randomElement(using:)":{"role":"symbol","kind":"symbol","title":"randomElement(using:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"randomElement","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/randomElement(using:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"title":"BigUInt.Words","role":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","url":"\/documentation\/bigint\/biguint\/words-swift.struct","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"Words"}],"kind":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/ranges(of:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/ranges(of:).json index ebee056..0b129b5 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/ranges(of:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/ranges(of:).json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"other","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sn","text":"Range"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":">] ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"C"},{"text":" : ","kind":"text"},{"kind":"typeIdentifier","text":"Collection","preciseIdentifier":"s:Sl"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":" == ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.ranges(of:)"},{"type":"text","text":"."}],"sections":[],"metadata":{"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method","role":"symbol","platforms":[{"beta":false,"name":"iOS","deprecated":false,"unavailable":false,"introducedAt":"16.0"},{"unavailable":false,"name":"macOS","beta":false,"deprecated":false,"introducedAt":"13.0"},{"name":"tvOS","deprecated":false,"unavailable":false,"beta":false,"introducedAt":"16.0"},{"introducedAt":"9.0","name":"watchOS","deprecated":false,"unavailable":false,"beta":false}],"title":"ranges(of:)","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE6ranges2ofSaySny5IndexQzGGqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">]","kind":"text"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/ranges(of:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic","abstract":[],"title":"ranges(of:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","role":"symbol","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"ranges"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"C"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"preciseIdentifier":"s:Sn","kind":"typeIdentifier","text":"Range"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">]","kind":"text"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"symbolKind":"method","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"roleHeading":"Instance Method","title":"ranges(of:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"ranges","kind":"identifier"},{"kind":"text","text":"<"},{"text":"C","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"of"},{"kind":"text","text":": "},{"text":"C","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">]"}],"extendedModule":"Swift","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE6ranges2ofSaySny5IndexQzGGqd___tSlRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","platforms":[{"unavailable":false,"name":"iOS","beta":false,"deprecated":false,"introducedAt":"16.0"},{"name":"macOS","unavailable":false,"beta":false,"introducedAt":"13.0","deprecated":false},{"deprecated":false,"beta":false,"name":"tvOS","introducedAt":"16.0","unavailable":false},{"deprecated":false,"unavailable":false,"beta":false,"introducedAt":"9.0","name":"watchOS"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.ranges(of:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"ranges","kind":"identifier"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"other"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Range","kind":"typeIdentifier","preciseIdentifier":"s:Sn"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">] "},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Collection","kind":"typeIdentifier","preciseIdentifier":"s:Sl"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/ranges(of:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"ranges"},{"text":"<","kind":"text"},{"text":"C","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"of","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"C","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Range","preciseIdentifier":"s:Sn","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">]","kind":"text"}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/ranges(of:)","kind":"symbol","title":"ranges(of:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(_:_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(_:_:).json index ab6f905..24891cf 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(_:_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(_:_:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"initialResult"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"nextPartialResult","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}]}],"kind":"declarations"}],"metadata":{"extendedModule":"Swift","externalID":"s:STsE6reduceyqd__qd___qd__qd___7ElementQztKXEtKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"text":", (","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}],"title":"reduce(_:_:)","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","role":"symbol"},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.reduce(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","abstract":[],"type":"topic","title":"reduce(_:_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"initialResult","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"nextPartialResult"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"languages":["swift"]}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"roleHeading":"Instance Method","externalID":"s:STsE6reduceyqd__qd___qd__qd___7ElementQztKXEtKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","title":"reduce(_:_:)","symbolKind":"method"},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.reduce(_:_:)","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(_:_:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","title":"reduce(_:_:)","abstract":[],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(into:_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(into:_:).json index b85ce68..d23702a 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(into:_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/reduce(into:_:).json @@ -1 +1 @@ -{"metadata":{"title":"reduce(into:_:)","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"into"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ()) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"externalID":"s:STsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","interfaceLanguage":"swift"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.reduce(into:_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Result"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"initialResult"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"updateAccumulatingResult"},{"text":": (","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"platforms":["macOS"]}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)"]}],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(into:_:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Result"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"title":"reduce(into:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.reduce(into:_:)"},{"type":"text","text":"."}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Result"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"kind":"text","text":" "},{"text":"initialResult","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"updateAccumulatingResult","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Result","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}]}],"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"reduce(into:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Result"},{"text":">(","kind":"text"},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Result"},{"text":", (","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Result"}],"symbolKind":"method","externalID":"s:STsE6reduce4into_qd__qd__n_yqd__z_7ElementQztKXEtKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(into:_:)":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","title":"reduce(into:_:)","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:).json index 033e852..5ab8878 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:).json @@ -1 +1 @@ -{"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","text":"RangeSet","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"text":">) -> ","kind":"text"},{"kind":"typeIdentifier","text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"roleHeading":"Instance Method","externalID":"s:SlsE17removingSubrangesys18DiscontiguousSliceVyxGs8RangeSetVy5IndexQzGF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","symbolKind":"method","title":"removingSubranges(_:)","platforms":[{"beta":false,"deprecated":false,"name":"iOS","unavailable":false,"introducedAt":"18.0"},{"beta":false,"introducedAt":"15.0","name":"macOS","unavailable":false,"deprecated":false},{"beta":false,"name":"tvOS","introducedAt":"18.0","deprecated":false,"unavailable":false},{"unavailable":false,"deprecated":false,"beta":false,"introducedAt":"11.0","name":"watchOS"},{"deprecated":false,"introducedAt":"2.0","unavailable":false,"beta":false,"name":"visionOS"}]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"removingSubranges"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"subranges","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">) -> ","kind":"text"},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"patch":0,"minor":3,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.removingSubranges(_:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/removingSubranges(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","type":"topic","title":"removingSubranges(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"removingSubranges","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"text":">) -> ","kind":"text"},{"text":"DiscontiguousSlice","preciseIdentifier":"s:s18DiscontiguousSliceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.removingSubranges(_:)"},{"text":".","type":"text"}],"metadata":{"roleHeading":"Instance Method","title":"removingSubranges(_:)","role":"symbol","platforms":[{"name":"iOS","introducedAt":"18.0","deprecated":false,"beta":false,"unavailable":false},{"name":"macOS","introducedAt":"15.0","deprecated":false,"beta":false,"unavailable":false},{"deprecated":false,"name":"tvOS","introducedAt":"18.0","unavailable":false,"beta":false},{"introducedAt":"11.0","deprecated":false,"unavailable":false,"name":"watchOS","beta":false},{"name":"visionOS","beta":false,"introducedAt":"2.0","unavailable":false,"deprecated":false}],"symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"externalID":"s:SlsE17removingSubrangesys18DiscontiguousSliceVyxGs8RangeSetVy5IndexQzGF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"RangeSet","preciseIdentifier":"s:s8RangeSetV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Index","preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier"},{"kind":"text","text":">) -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV","text":"DiscontiguousSlice"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"extendedModule":"Swift"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)"]}],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"removingSubranges"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"subranges","kind":"internalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s8RangeSetV","kind":"typeIdentifier","text":"RangeSet"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa","text":"Index"},{"text":">) -> ","kind":"text"},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/removingSubranges(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/removingSubranges(_:)","title":"removingSubranges(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"removingSubranges","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:s8RangeSetV","text":"RangeSet","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"kind":"text","text":">) -> "},{"text":"DiscontiguousSlice","kind":"typeIdentifier","preciseIdentifier":"s:s18DiscontiguousSliceV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"role":"symbol","type":"topic","kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/reversed().json b/docs/data/documentation/bigint/biguint/words-swift.struct/reversed().json index 14a08ef..e4559db 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/reversed().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/reversed().json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reversed"},{"kind":"text","text":"() -> "},{"text":"ReversedCollection","kind":"typeIdentifier","preciseIdentifier":"s:s18ReversedCollectionV"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":">","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"BidirectionalCollection.reversed()","type":"codeVoice"},{"type":"text","text":"."}],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reversed"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"ReversedCollection","preciseIdentifier":"s:s18ReversedCollectionV"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"title":"reversed()","externalID":"s:SKsE8reverseds18ReversedCollectionVyxGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reversed()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"ReversedCollection","preciseIdentifier":"s:s18ReversedCollectionV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()","abstract":[],"type":"topic","title":"reversed()"}}} \ No newline at end of file +{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.reversed()"},{"text":".","type":"text"}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"title":"reversed()","extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"ReversedCollection","kind":"typeIdentifier","preciseIdentifier":"s:s18ReversedCollectionV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"role":"symbol","externalID":"s:SKsE8reverseds18ReversedCollectionVyxGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reversed()":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reversed()","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"reversed","kind":"identifier"},{"text":"() -> ","kind":"text"},{"preciseIdentifier":"s:s18ReversedCollectionV","text":"ReversedCollection","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":">"}],"type":"topic","kind":"symbol","role":"symbol","title":"reversed()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/sequence-implementations.json b/docs/data/documentation/bigint/biguint/words-swift.struct/sequence-implementations.json index 31b60b4..0c7d11a 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/sequence-implementations.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/sequence-implementations.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"kind":"article","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"topicSections":[{"title":"Instance Properties","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher"],"anchor":"Instance-Properties"},{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"],"title":"Instance Methods","anchor":"Instance-Methods","generated":true}],"metadata":{"title":"Sequence Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","role":"symbol","title":"starts(with:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-it6h":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"title":"sorted(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compare(_:_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"compare","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Compared","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"c:@E@NSComparisonResult","text":"ComparisonResult","kind":"typeIdentifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","abstract":[],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"compare(_:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","type":"topic","title":"sorted()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/allSatisfy(_:)":{"title":"allSatisfy(_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)","kind":"symbol","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lazy":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lazy"},{"kind":"text","text":": "},{"text":"LazySequence","preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","title":"lazy","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compactMap(_:)":{"kind":"symbol","title":"compactMap(_:)","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"compactMap","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled()":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","type":"topic","title":"shuffled()","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(into:_:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Result"},{"kind":"text","text":">("},{"text":"into","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ()) "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"title":"reduce(into:_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-b54c":{"kind":"symbol","role":"symbol","type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","text":"Predicate","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-1jmt5":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","role":"symbol","title":"map(_:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"map"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"E","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":"]","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","title":"lexicographicallyPrecedes(_:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max(by:)":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"max"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"?"}],"title":"max(by:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:)":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","title":"starts(with:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:by:)":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","title":"elementsEqual(_:by:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first(where:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"title":"first(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formatted(_:)":{"kind":"symbol","type":"topic","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"formatted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"S"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"S"},{"text":".","kind":"text"},{"text":"FormatOutput","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","title":"formatted(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/publisher":{"fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Sequence","preciseIdentifier":"s:7Combine10PublishersO8SequenceV"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO","text":"Never"},{"text":">","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","title":"publisher","kind":"symbol","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-6lwxh":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"text":"SegmentOfResult","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","title":"flatMap(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","role":"symbol","title":"contains(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","role":"symbol","title":"lexicographicallyPrecedes(_:by:)","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max()":{"type":"topic","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","kind":"symbol","title":"max()","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled(using:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)","title":"shuffled(using:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(_:_:)":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","abstract":[],"type":"topic","title":"reduce(_:_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"reduce","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min(by:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"?","kind":"text"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","title":"min(by:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(where:)":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","title":"contains(where:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"contains","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"}],"type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/forEach(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"kind":"text","text":"(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:s4Voida","text":"Void","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"kind":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","title":"forEach(_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-1i5xc":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","abstract":[],"type":"topic","title":"filter(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count(where:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"E"},{"text":">(","kind":"text"},{"text":"where","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"E"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","title":"count(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/enumerated()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","abstract":[],"title":"enumerated()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"enumerated"},{"text":"() -> ","kind":"text"},{"kind":"typeIdentifier","text":"EnumeratedSequence","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-5v20h":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","role":"symbol","deprecated":true,"type":"topic","title":"flatMap(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","kind":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"flatMap"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"]"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:)":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","title":"elementsEqual(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(by:)":{"kind":"symbol","title":"sorted(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-qagl":{"kind":"symbol","abstract":[],"title":"sorted(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min()":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Comparable"},{"type":"text","text":"."}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"abstract":[],"type":"topic","title":"min()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"?","kind":"text"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"text":">((","kind":"text"},{"preciseIdentifier":"s:SR","text":"UnsafeBufferPointer","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","kind":"symbol","title":"withContiguousStorageIfAvailable(_:)","role":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"major":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations"]}],"topicSections":[{"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher"],"title":"Instance Properties","anchor":"Instance-Properties","generated":true},{"title":"Instance Methods","anchor":"Instance-Methods","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"]}],"metadata":{"title":"Sequence Implementations","roleHeading":"API Collection","role":"collectionGroup","modules":[{"name":"BigInt"}]},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","interfaceLanguage":"swift"},"kind":"article","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/allSatisfy(_:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"allSatisfy"},{"kind":"text","text":"(("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/allSatisfy(_:)","title":"allSatisfy(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-5v20h":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-5v20h","deprecated":true,"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"flatMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"kind":"text","text":">(("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"?) ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"ElementOfResult"},{"text":"]","kind":"text"}],"kind":"symbol","title":"flatMap(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(_:_:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"text":"<","kind":"text"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"kind":"text","text":", ("},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Result","kind":"typeIdentifier"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(_:_:)","title":"reduce(_:_:)","abstract":[],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled(using:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","title":"shuffled(using:)","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"kind":"text","text":"() -> "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","kind":"symbol","title":"max()","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/reduce(into:_:)":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","title":"reduce(into:_:)","abstract":[],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/reduce(into:_:)","type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"reduce"},{"kind":"text","text":"<"},{"text":"Result","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"into","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Result","kind":"typeIdentifier"},{"text":", (","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Result"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ()) ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Result"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-it6h":{"title":"sorted(using:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compare(_:_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"compare","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Compared","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"ComparisonResult","preciseIdentifier":"c:@E@NSComparisonResult"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"compare(_:_:)","role":"symbol","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compare(_:_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/count(where:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/count(where:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"count","kind":"identifier"},{"text":"<","kind":"text"},{"text":"E","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"E"},{"kind":"text","text":") -> "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"kind":"symbol","title":"count(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/map(_:)-1jmt5":{"abstract":[],"title":"map(_:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"map","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"E"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"T"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":"(","kind":"text"},{"text":"E","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/map(_:)-1jmt5","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:by:)":{"title":"lexicographicallyPrecedes(_:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"lexicographicallyPrecedes"},{"text":"<","kind":"text"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:)":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","type":"topic","title":"starts(with:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/flatMap(_:)-6lwxh":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"flatMap"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"SegmentOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"SegmentOfResult","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/flatMap(_:)-6lwxh","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","type":"topic","kind":"symbol","title":"flatMap(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lexicographicallyPrecedes(_:)":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lexicographicallyPrecedes(_:)","type":"topic","title":"lexicographicallyPrecedes(_:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"lexicographicallyPrecedes","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","abstract":[],"title":"withContiguousStorageIfAvailable(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"UnsafeBufferPointer","preciseIdentifier":"s:SR"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min()":{"title":"min()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"() -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"?"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min()","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(where:)":{"abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","role":"symbol","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(where:)","type":"topic","title":"contains(where:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"text":"where","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/forEach(_:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/forEach(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"forEach","kind":"identifier"},{"text":"((","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Void","kind":"typeIdentifier","preciseIdentifier":"s:s4Voida"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"}],"kind":"symbol","title":"forEach(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","title":"sorted()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-b54c":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-b54c","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"filter"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:10Foundation9PredicateV","kind":"typeIdentifier","text":"Predicate"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"kind":"symbol","title":"filter(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/min(by:)":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"min","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/min(by:)","title":"min(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:by:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:by:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"elementsEqual","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"OtherSequence"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"OtherSequence"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"kind":"symbol","title":"elementsEqual(_:by:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/max(by:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"max","kind":"identifier"},{"text":"(","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/max(by:)","title":"max(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/elementsEqual(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"elementsEqual","kind":"identifier"},{"kind":"text","text":"<"},{"text":"OtherSequence","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"OtherSequence","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"title":"elementsEqual(_:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/elementsEqual(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/enumerated()":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/enumerated()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"enumerated","kind":"identifier"},{"kind":"text","text":"() -> "},{"text":"EnumeratedSequence","kind":"typeIdentifier","preciseIdentifier":"s:s18EnumeratedSequenceV"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":">","kind":"text"}],"kind":"symbol","title":"enumerated()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/lazy":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/lazy","kind":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"lazy","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:s12LazySequenceV","kind":"typeIdentifier","text":"LazySequence"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":">"}],"type":"topic","title":"lazy","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-qagl":{"title":"sorted(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/compactMap(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"compactMap","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"ElementOfResult"},{"text":">((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"ElementOfResult"},{"kind":"text","text":"?) "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"ElementOfResult","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/compactMap(_:)","title":"compactMap(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled()":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"kind":"symbol","title":"shuffled()"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/contains(_:)":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"contains"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"}],"abstract":[],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/contains(_:)","title":"contains(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/filter(_:)-1i5xc":{"type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"filter","kind":"identifier"},{"text":"((","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/filter(_:)-1i5xc","title":"filter(_:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(by:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","title":"sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/first(where:)":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/first(where:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"first","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"where"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"kind":"symbol","title":"first(where:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/publisher":{"type":"topic","role":"symbol","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"publisher","kind":"identifier"},{"kind":"text","text":": "},{"text":"Publishers","kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:7Combine10PublishersO8SequenceV","text":"Sequence"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":", "},{"text":"Never","kind":"typeIdentifier","preciseIdentifier":"s:s5NeverO"},{"text":">","kind":"text"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/publisher","title":"publisher","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/formatted(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"formatted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"FormatOutput","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation11FormatStyleP0B6OutputQa"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/formatted(_:)","title":"formatted(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:by:)":{"title":"starts(with:by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","kind":"symbol","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled().json b/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled().json index 7206306..bb760d8 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled().json @@ -1 +1 @@ -{"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","interfaceLanguage":"swift"},"metadata":{"externalID":"s:STsE8shuffledSay7ElementQzGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"shuffled()","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","role":"symbol","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"extendedModule":"Swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.shuffled()","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled()":{"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","type":"topic","title":"shuffled()","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"kind":"symbol","sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":"]"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"extendedModule":"Swift","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"role":"symbol","symbolKind":"method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"shuffled()","externalID":"s:STsE8shuffledSay7ElementQzGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.shuffled()"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()"]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled()":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled()","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"kind":"symbol","title":"shuffled()"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled(using:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled(using:).json index be006a6..838ea82 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled(using:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/shuffled(using:).json @@ -1 +1 @@ -{"sections":[],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"roleHeading":"Instance Method","extendedModule":"Swift","title":"shuffled(using:)","externalID":"s:STsE8shuffled5usingSay7ElementQzGqd__z_tSGRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.shuffled(using:)"},{"type":"text","text":"."}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"T"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"generator","kind":"internalParam"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"] ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SG","text":"RandomNumberGenerator","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled(using:)":{"role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"shuffled","kind":"identifier"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"inout","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"abstract":[],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)","title":"shuffled(using:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"kind":"text","text":"<"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":" "},{"text":"generator","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"T","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:SG","text":"RandomNumberGenerator","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)"]}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"keyword","text":"inout"},{"text":" ","kind":"text"},{"text":"T","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:STsE8shuffled5usingSay7ElementQzGqd__z_tSGRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","extendedModule":"Swift","roleHeading":"Instance Method","role":"symbol","title":"shuffled(using:)"},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.shuffled(using:)","type":"codeVoice"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/shuffled(using:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","title":"shuffled(using:)","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"shuffled"},{"text":"<","kind":"text"},{"text":"T","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"text":"inout","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"T"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/shuffled(using:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted().json b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted().json index 3bc3614..992e913 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted().json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted().json @@ -1 +1 @@ -{"metadata":{"title":"sorted()","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"externalID":"s:STsSL7ElementRpzrlE6sortedSayABGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","roleHeading":"Instance Method","extendedModule":"Swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.sorted()"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","interfaceLanguage":"swift"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted()":{"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"() -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","type":"topic","title":"sorted()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"kind":"symbol","abstract":[]}}} \ No newline at end of file +{"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:STsSL7ElementRpzrlE6sortedSayABGyF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Comparable","type":"codeVoice"},{"type":"text","text":"."}]},"extendedModule":"Swift","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":"]"}],"role":"symbol","title":"sorted()"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted()"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted()":{"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"() -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"conformance":{"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Comparable"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted()","title":"sorted()","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","kind":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(by:).json index 0425ee9..f1c6d80 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(by:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.sorted(by:)"},{"type":"text","text":"."}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"externalID":"s:STsE6sorted2bySay7ElementQzGSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","symbolKind":"method","title":"sorted(by:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(by:)":{"kind":"symbol","title":"sorted(by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"abstract":[],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)"]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"by"},{"text":" ","kind":"text"},{"text":"areInIncreasingOrder","kind":"internalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted(by:)"},{"text":".","type":"text"}],"metadata":{"title":"sorted(by:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","roleHeading":"Instance Method","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"kind":"externalParam","text":"by"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":"]","kind":"text"}],"externalID":"s:STsE6sorted2bySay7ElementQzGSbAD_ADtKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(by:)":{"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","title":"sorted(by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"("},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"abstract":[],"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(by:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h.json b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h.json index 34878a9..a67b544 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h.json @@ -1 +1 @@ -{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","interfaceLanguage":"swift"},"metadata":{"title":"sorted(using:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","extendedModule":"Swift","platforms":[{"name":"iOS","beta":false,"deprecated":false,"unavailable":false,"introducedAt":"15.0"},{"introducedAt":"12.0","deprecated":false,"unavailable":false,"beta":false,"name":"macOS"},{"introducedAt":"15.0","unavailable":false,"name":"tvOS","beta":false,"deprecated":false},{"introducedAt":"8.0","deprecated":false,"beta":false,"name":"watchOS","unavailable":false}],"roleHeading":"Instance Method","externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tSTRd__AA14SortComparatorRd_0_ADQyd__Rsd_0_8ComparedQyd_0_AERSr0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"S"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"comparators"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"] "},{"kind":"keyword","text":"where"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"Sequence","preciseIdentifier":"s:ST","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:10Foundation14SortComparatorP","text":"SortComparator","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"S","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":" == "},{"text":"Comparator","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted(using:)"},{"text":".","type":"text"}],"sections":[],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-it6h":{"type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","abstract":[],"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"kind":"text","text":", "},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"S"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"title":"sorted(using:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h"},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.sorted(using:)"},{"type":"text","text":"."}],"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"comparators"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"S","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"text":" : ","kind":"text"},{"text":"SortComparator","kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Comparator"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"kind":"typeIdentifier","text":"Comparator"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"}],"platforms":["macOS"]}],"kind":"declarations"}],"metadata":{"roleHeading":"Instance Method","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"S"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":"]","kind":"text"}],"platforms":[{"beta":false,"name":"iOS","introducedAt":"15.0","unavailable":false,"deprecated":false},{"beta":false,"name":"macOS","deprecated":false,"introducedAt":"12.0","unavailable":false},{"deprecated":false,"introducedAt":"15.0","unavailable":false,"name":"tvOS","beta":false},{"deprecated":false,"name":"watchOS","introducedAt":"8.0","unavailable":false,"beta":false}],"extendedModule":"Swift","title":"sorted(using:)","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","role":"symbol","externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tSTRd__AA14SortComparatorRd_0_ADQyd__Rsd_0_8ComparedQyd_0_AERSr0_lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-it6h":{"title":"sorted(using:)","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"text":"S","kind":"genericParameter"},{"text":", ","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"kind":"text","text":">("},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"S","kind":"typeIdentifier"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-it6h","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl.json b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl.json index 68d5aa2..0d4d51d 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","interfaceLanguage":"swift"},"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"sorted(using:)","role":"symbol","platforms":[{"name":"iOS","introducedAt":"15.0","deprecated":false,"unavailable":false,"beta":false},{"deprecated":false,"unavailable":false,"name":"macOS","beta":false,"introducedAt":"12.0"},{"unavailable":false,"beta":false,"introducedAt":"15.0","name":"tvOS","deprecated":false},{"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"8.0","unavailable":false}],"extendedModule":"Swift","externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tAA14SortComparatorRd__8ComparedQyd__AERSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"text":"Comparator","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":"]","kind":"text"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.sorted(using:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Comparator","kind":"genericParameter"},{"kind":"text","text":">("},{"kind":"externalParam","text":"using"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"comparator"},{"kind":"text","text":": "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Comparator","kind":"typeIdentifier"},{"text":" : ","kind":"text"},{"text":"SortComparator","preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared","kind":"typeIdentifier"}],"languages":["swift"],"platforms":["macOS"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl"]}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-qagl":{"kind":"symbol","abstract":[],"title":"sorted(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","role":"symbol","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"sorted","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Comparator"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":"]","kind":"text"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"comparator"},{"text":": ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"] "},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","text":"Comparator"},{"text":" : ","kind":"text"},{"preciseIdentifier":"s:10Foundation14SortComparatorP","kind":"typeIdentifier","text":"SortComparator"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":" == ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:10Foundation14SortComparatorP8ComparedQa","text":"Compared"}]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl"},"metadata":{"externalID":"s:ST10FoundationE6sorted5usingSay7ElementQzGqd___tAA14SortComparatorRd__8ComparedQyd__AERSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","platforms":[{"introducedAt":"15.0","name":"iOS","deprecated":false,"unavailable":false,"beta":false},{"unavailable":false,"beta":false,"name":"macOS","introducedAt":"12.0","deprecated":false},{"introducedAt":"15.0","unavailable":false,"beta":false,"deprecated":false,"name":"tvOS"},{"unavailable":false,"name":"watchOS","deprecated":false,"introducedAt":"8.0","beta":false}],"extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"sorted(using:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"sorted","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"using"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Comparator"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":"]"}],"symbolKind":"method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.sorted(using:)"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/sorted(using:)-qagl":{"title":"sorted(using:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/sorted(using:)-qagl","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","abstract":[],"type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"sorted"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Comparator"},{"text":">(","kind":"text"},{"text":"using","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Comparator","kind":"typeIdentifier"},{"kind":"text","text":") -> ["},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"kind":"symbol"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json index 7022474..7f750c8 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":" = Int.max, ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":" = true, ","kind":"text"},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":" "},{"text":"isSeparator","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)"]}],"kind":"symbol","metadata":{"title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"whereSeparator"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"externalID":"s:SlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"schemaVersion":{"minor":3,"major":0,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"whereSeparator","kind":"externalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}],"title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.split(maxSplits:omittingEmptySubsequences:whereSeparator:)","type":"codeVoice"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"kind":"text","text":"("},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" = Int.max, "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = true, "},{"text":"whereSeparator","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"isSeparator"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"languages":["swift"],"platforms":["macOS"]}]}],"metadata":{"externalID":"s:SlsE5split9maxSplits25omittingEmptySubsequences14whereSeparatorSay11SubSequenceQzGSi_S2b7ElementQzKXEtKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":", "},{"text":"whereSeparator","kind":"externalParam"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> ["},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"symbolKind":"method"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(maxSplits:omittingEmptySubsequences:whereSeparator:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"whereSeparator"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":"]","kind":"text"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(maxSplits:omittingEmptySubsequences:whereSeparator:)","title":"split(maxSplits:omittingEmptySubsequences:whereSeparator:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json index 9cd8b04..3960a82 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.split(separator:maxSplits:omittingEmptySubsequences:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","externalID":"s:SlsSQ7ElementRpzrlE5split9separator9maxSplits25omittingEmptySubsequencesSay11SubSequenceQzGAB_SiSbtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"roleHeading":"Instance Method","title":"split(separator:maxSplits:omittingEmptySubsequences:)","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"separator","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}]},"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)"},"kind":"symbol","sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"text":"separator","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":", ","kind":"text"},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":" = Int.max, "},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":" = true) -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"},{"kind":"text","text":"]"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":", ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"},{"kind":"text","text":"]"}],"conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","abstract":[],"kind":"symbol","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","title":"split(separator:maxSplits:omittingEmptySubsequences:)","type":"topic"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"]}],"schemaVersion":{"major":0,"patch":0,"minor":3},"metadata":{"roleHeading":"Instance Method","symbolKind":"method","extendedModule":"Swift","title":"split(separator:maxSplits:omittingEmptySubsequences:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"split"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"separator"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"omittingEmptySubsequences"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"text":") -> [","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"role":"symbol","externalID":"s:SlsSQ7ElementRpzrlE5split9separator9maxSplits25omittingEmptySubsequencesSay11SubSequenceQzGAB_SiSbtF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}]}},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.split(separator:maxSplits:omittingEmptySubsequences:)"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","interfaceLanguage":"swift"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"split"},{"kind":"text","text":"("},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"kind":"text","text":", "},{"text":"maxSplits","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":" = Int.max, ","kind":"text"},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = true) -> [","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"},{"text":"]","kind":"text"}]}],"kind":"declarations"}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/split(separator:maxSplits:omittingEmptySubsequences:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/split(separator:maxSplits:omittingEmptySubsequences:)","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}]},"title":"split(separator:maxSplits:omittingEmptySubsequences:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"split","kind":"identifier"},{"text":"(","kind":"text"},{"text":"separator","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"maxSplits"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"omittingEmptySubsequences","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":") -> ["},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"kind":"text","text":"]"}],"role":"symbol","kind":"symbol","type":"topic","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/startindex.json b/docs/data/documentation/bigint/biguint/words-swift.struct/startindex.json index f454b24..a01dde0 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/startindex.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/startindex.json @@ -1 +1 @@ -{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/startindex"]}],"sections":[],"metadata":{"symbolKind":"property","role":"symbol","title":"startIndex","externalID":"s:6BigInt0A4UIntV5WordsV10startIndexSivp","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"}],"modules":[{"name":"BigInt"}],"roleHeading":"Instance Property"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.startIndex","type":"codeVoice"},{"type":"text","text":"."}],"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/startIndex":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex","fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"startIndex","kind":"identifier"},{"kind":"text","text":": "},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}],"title":"startIndex","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","type":"topic","abstract":[],"kind":"symbol","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"primaryContentSections":[{"declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"startIndex"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/startindex"]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.startIndex"},{"type":"text","text":"."}],"sections":[],"metadata":{"role":"symbol","roleHeading":"Instance Property","symbolKind":"property","title":"startIndex","modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV5WordsV10startIndexSivp","fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/startIndex":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","title":"startIndex","role":"symbol","type":"topic","abstract":[],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"startIndex","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/startIndex"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:).json index fa4e306..d7286e7 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:).json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"possiblePrefix","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"}],"platforms":["macOS"]}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Sequence.starts(with:)","type":"codeVoice"},{"text":".","type":"text"}],"metadata":{"externalID":"s:STsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"}],"title":"starts(with:)","role":"symbol","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Instance Method"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)"]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:)":{"kind":"symbol","type":"topic","role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":") -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","title":"starts(with:)","abstract":[]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"text":"PossiblePrefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method","extendedModule":"Swift","title":"starts(with:)","externalID":"s:STsSQ7ElementRpzrlE6starts4withSbqd___tSTRd__AAQyd__ABRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"role":"symbol"},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"text":"PossiblePrefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"with"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"possiblePrefix"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","kind":"typeIdentifier","text":"Sequence"},{"kind":"text","text":", "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":" == ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.starts(with:)","type":"codeVoice"},{"text":".","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"sections":[],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)"]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:)":{"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"code":"Element","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"Equatable"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:)","type":"topic","title":"starts(with:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"with"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"kind":"symbol","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:by:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:by:).json index 97ef898..e0e8bba 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:by:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/starts(with:by:).json @@ -1 +1 @@ -{"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Instance Method","title":"starts(with:by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"text":"PossiblePrefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"externalID":"s:STsE6starts4with2bySbqd___Sb7ElementQz_ADQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","symbolKind":"method","role":"symbol"},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)"]}],"kind":"symbol","sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"possiblePrefix"},{"text":": ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"text":"areEquivalent","kind":"internalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":" "},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":" : "},{"preciseIdentifier":"s:ST","text":"Sequence","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.starts(with:by:)"},{"type":"text","text":"."}],"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:by:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","role":"symbol","title":"starts(with:by:)","type":"topic","abstract":[],"kind":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":", ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Sequence.starts(with:by:)"},{"type":"text","text":"."}],"metadata":{"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"method","extendedModule":"Swift","roleHeading":"Instance Method","externalID":"s:STsE6starts4with2bySbqd___Sb7ElementQz_ADQyd__tKXEtKSTRd__lF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"starts(with:by:)","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"PossiblePrefix"},{"text":">(","kind":"text"},{"text":"with","kind":"externalParam"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"by"},{"text":": (","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":", ","kind":"text"},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"}],"role":"symbol"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"starts","kind":"identifier"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"text":"with","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"possiblePrefix"},{"kind":"text","text":": "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"by","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"areEquivalent"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" ","kind":"text"},{"kind":"keyword","text":"where"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/starts(with:by:)":{"title":"starts(with:by:)","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"starts"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"PossiblePrefix"},{"kind":"text","text":">("},{"kind":"externalParam","text":"with"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"PossiblePrefix"},{"text":", ","kind":"text"},{"text":"by","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":", "},{"text":"PossiblePrefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/starts(with:by:)","kind":"symbol","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/subscript(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/subscript(_:).json index 06c0fb3..b130e12 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/subscript(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/subscript(_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.subscript(_:)"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"metadata":{"externalID":"s:6BigInt0A4UIntV5WordsVySuSicip","title":"subscript(_:)","modules":[{"name":"BigInt"}],"role":"symbol","symbolKind":"subscript","roleHeading":"Instance Subscript","fragments":[{"kind":"keyword","text":"subscript"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word","kind":"typeIdentifier"}]},"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"subscript","kind":"keyword"},{"kind":"text","text":"("},{"text":"index","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":".","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/subscript(_:)":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)","role":"symbol","type":"topic","fragments":[{"text":"subscript","kind":"keyword"},{"kind":"text","text":"("},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","text":"Word"}],"kind":"symbol","title":"subscript(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"fragments":[{"text":"typealias","kind":"keyword"},{"text":" ","kind":"text"},{"text":"Word","kind":"identifier"}],"role":"symbol","navigatorTitle":[{"text":"Word","kind":"identifier"}],"kind":"symbol","title":"BigUInt.Word","url":"\/documentation\/bigint\/biguint\/word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","abstract":[{"type":"text","text":"The type representing a digit in "},{"code":"BigUInt","type":"codeVoice"},{"type":"text","text":"’s underlying number system."}],"type":"topic"}}} \ No newline at end of file +{"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"kind":"keyword","text":"subscript"},{"text":"(","kind":"text"},{"text":"index","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt"},{"kind":"text","text":"."},{"text":"Word","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier"},{"text":" { ","kind":"text"},{"text":"get","kind":"keyword"},{"kind":"text","text":" }"}]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct"]]},"kind":"symbol","schemaVersion":{"patch":0,"major":0,"minor":3},"metadata":{"modules":[{"name":"BigInt"}],"roleHeading":"Instance Subscript","title":"subscript(_:)","fragments":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"}],"externalID":"s:6BigInt0A4UIntV5WordsVySuSicip","symbolKind":"subscript","role":"symbol"},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.subscript(_:)"},{"type":"text","text":"."}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Word":{"title":"BigUInt.Word","fragments":[{"kind":"keyword","text":"typealias"},{"kind":"text","text":" "},{"text":"Word","kind":"identifier"}],"navigatorTitle":[{"text":"Word","kind":"identifier"}],"role":"symbol","url":"\/documentation\/bigint\/biguint\/word","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Word","type":"topic","abstract":[{"type":"text","text":"The type representing a digit in "},{"type":"codeVoice","code":"BigUInt"},{"type":"text","text":"’s underlying number system."}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/subscript(_:)":{"title":"subscript(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/subscript(_:)","fragments":[{"text":"subscript","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"kind":"text","text":"."},{"preciseIdentifier":"s:6BigInt0A4UIntV4Worda","kind":"typeIdentifier","text":"Word"}],"type":"topic","abstract":[],"role":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(_:).json index a03f87a..383b00f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(_:).json @@ -1 +1 @@ -{"kind":"symbol","sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"BidirectionalCollection.suffix(_:)"},{"text":".","type":"text"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"maxLength"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence","kind":"typeIdentifier"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"},"metadata":{"extendedModule":"Swift","symbolKind":"method","title":"suffix(_:)","role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"externalID":"s:SKsE6suffixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(_:)":{"kind":"symbol","role":"symbol","title":"suffix(_:)","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","abstract":[],"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","role":"collectionGroup","type":"topic","kind":"article","title":"BidirectionalCollection Implementations"}}} \ No newline at end of file +{"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)"},"schemaVersion":{"major":0,"patch":0,"minor":3},"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"BidirectionalCollection.suffix(_:)"},{"text":".","type":"text"}],"metadata":{"fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"}],"roleHeading":"Instance Method","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","extendedModule":"Swift","externalID":"s:SKsE6suffixy11SubSequenceQzSiF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"suffix(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations"]]},"kind":"symbol","sections":[],"primaryContentSections":[{"declarations":[{"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"maxLength","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"languages":["swift"],"platforms":["macOS"]}],"kind":"declarations"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(_:)":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(_:)","title":"suffix(_:)","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/BidirectionalCollection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/BidirectionalCollection-Implementations","title":"BidirectionalCollection Implementations","type":"topic","kind":"article","role":"collectionGroup","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(from:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(from:).json index d2ca08d..5875693 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(from:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/suffix(from:).json @@ -1 +1 @@ -{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)"},"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.suffix(from:)"},{"text":".","type":"text"}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"kind":"text","text":"("},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"start"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"platforms":["macOS"]}]}],"metadata":{"title":"suffix(from:)","symbolKind":"method","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"externalID":"s:SlsE6suffix4from11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","roleHeading":"Instance Method","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"schemaVersion":{"patch":0,"minor":3,"major":0},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(from:)":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","abstract":[],"role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","text":"Index","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"title":"suffix(from:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)"}}} \ No newline at end of file +{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.suffix(from:)"},{"type":"text","text":"."}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl5IndexQa","kind":"typeIdentifier","text":"Index"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"title":"suffix(from:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"symbolKind":"method","roleHeading":"Instance Method","role":"symbol","extendedModule":"Swift","externalID":"s:SlsE6suffix4from11SubSequenceQz5IndexQz_tF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"suffix"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"from"},{"kind":"text","text":" "},{"kind":"internalParam","text":"start"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"Index","kind":"typeIdentifier","preciseIdentifier":"s:Sl5IndexQa"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"platforms":["macOS"],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/suffix(from:)":{"fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"suffix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"from","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Index","preciseIdentifier":"s:Sl5IndexQa"},{"text":") -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/suffix(from:)","kind":"symbol","title":"suffix(from:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:).json index 9d468ea..8aa32f4 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:).json @@ -1 +1 @@ -{"abstract":[{"text":"Inherited from ","type":"text"},{"code":"Collection.trimmingPrefix(_:)","type":"codeVoice"},{"type":"text","text":"."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"metadata":{"roleHeading":"Instance Method","platforms":[{"name":"iOS","unavailable":false,"deprecated":false,"introducedAt":"16.0","beta":false},{"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"macOS","beta":false},{"name":"tvOS","introducedAt":"16.0","unavailable":false,"beta":false,"deprecated":false},{"name":"watchOS","deprecated":false,"beta":false,"unavailable":false,"introducedAt":"9.0"}],"title":"trimmingPrefix(_:)","symbolKind":"method","externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE14trimmingPrefixy11SubSequenceQzqd__STRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","role":"symbol","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"<"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Element"},{"type":"text","text":" conforms to "},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)"},"schemaVersion":{"minor":3,"major":0,"patch":0},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"Prefix"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"prefix"},{"kind":"text","text":": "},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"typeIdentifier","text":"Prefix"},{"kind":"text","text":" : "},{"kind":"typeIdentifier","preciseIdentifier":"s:ST","text":"Sequence"},{"text":", ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":" == "},{"text":"Prefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(_:)":{"type":"topic","kind":"symbol","abstract":[],"title":"trimmingPrefix(_:)","conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"Equatable"},{"type":"text","text":"."}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"sections":[],"metadata":{"externalID":"s:Sl17_StringProcessingSQ7ElementRpzrlE14trimmingPrefixy11SubSequenceQzqd__STRd__ABQyd__ACRSlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","title":"trimmingPrefix(_:)","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Element","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"type":"text","text":"."}]},"extendedModule":"Swift","symbolKind":"method","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"kind":"text","text":">("},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"platforms":[{"name":"iOS","introducedAt":"16.0","unavailable":false,"deprecated":false,"beta":false},{"introducedAt":"13.0","beta":false,"deprecated":false,"unavailable":false,"name":"macOS"},{"introducedAt":"16.0","unavailable":false,"beta":false,"name":"tvOS","deprecated":false},{"introducedAt":"9.0","unavailable":false,"beta":false,"deprecated":false,"name":"watchOS"}],"roleHeading":"Instance Method"},"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.trimmingPrefix(_:)"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"tokens":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"kind":"text","text":"<"},{"text":"Prefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"prefix","kind":"internalParam"},{"text":": ","kind":"text"},{"text":"Prefix","kind":"typeIdentifier"},{"text":") -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa"},{"text":" ","kind":"text"},{"text":"where","kind":"keyword"},{"kind":"text","text":" "},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":" : "},{"text":"Sequence","kind":"typeIdentifier","preciseIdentifier":"s:ST"},{"kind":"text","text":", "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"kind":"text","text":" == "},{"text":"Prefix","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"}],"platforms":["macOS"]}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(_:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"text":"<","kind":"text"},{"text":"Prefix","kind":"genericParameter"},{"text":">(","kind":"text"},{"text":"Prefix","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}],"conformance":{"constraints":[{"type":"codeVoice","code":"Element"},{"text":" conforms to ","type":"text"},{"code":"Equatable","type":"codeVoice"},{"text":".","type":"text"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"title":"trimmingPrefix(_:)","role":"symbol","type":"topic","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:).json index bbe8676..eb60880 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:).json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"kind":"identifier","text":"trimmingPrefix"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"kind":"text","text":" "},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}]}],"kind":"declarations"}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"schemaVersion":{"minor":3,"patch":0,"major":0},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.trimmingPrefix(while:)"},{"type":"text","text":"."}],"metadata":{"title":"trimmingPrefix(while:)","externalID":"s:Sl17_StringProcessingE14trimmingPrefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","kind":"typeIdentifier","text":"Bool"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"symbolKind":"method","roleHeading":"Instance Method","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","role":"symbol","platforms":[{"deprecated":false,"name":"iOS","introducedAt":"16.0","unavailable":false,"beta":false},{"introducedAt":"13.0","unavailable":false,"deprecated":false,"name":"macOS","beta":false},{"name":"tvOS","introducedAt":"16.0","beta":false,"unavailable":false,"deprecated":false},{"unavailable":false,"deprecated":false,"beta":false,"name":"watchOS","introducedAt":"9.0"}]},"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(while:)":{"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","abstract":[],"title":"trimmingPrefix(while:)","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa","text":"SubSequence"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"metadata":{"fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"text":": (","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"preciseIdentifier":"s:ST7ElementQa","kind":"typeIdentifier","text":"Element"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"Bool","preciseIdentifier":"s:Sb"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","kind":"typeIdentifier","preciseIdentifier":"s:Sl11SubSequenceQa"}],"title":"trimmingPrefix(while:)","role":"symbol","externalID":"s:Sl17_StringProcessingE14trimmingPrefix5while11SubSequenceQzSb7ElementQzKXE_tKF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","symbolKind":"method","platforms":[{"unavailable":false,"beta":false,"introducedAt":"16.0","name":"iOS","deprecated":false},{"introducedAt":"13.0","unavailable":false,"beta":false,"name":"macOS","deprecated":false},{"introducedAt":"16.0","name":"tvOS","deprecated":false,"unavailable":false,"beta":false},{"beta":false,"name":"watchOS","deprecated":false,"unavailable":false,"introducedAt":"9.0"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)"]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"trimmingPrefix","kind":"identifier"},{"text":"(","kind":"text"},{"text":"while","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"predicate","kind":"internalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":") "},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":"."},{"preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier","text":"SubSequence"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"type":"text","text":"Inherited from "},{"code":"Collection.trimmingPrefix(while:)","type":"codeVoice"},{"text":".","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/trimmingPrefix(while:)":{"fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"trimmingPrefix"},{"kind":"text","text":"("},{"text":"while","kind":"externalParam"},{"kind":"text","text":": ("},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":") ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"SubSequence","preciseIdentifier":"s:Sl11SubSequenceQa","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/trimmingPrefix(while:)","kind":"symbol","title":"trimmingPrefix(while:)","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/underestimatedcount.json b/docs/data/documentation/bigint/biguint/words-swift.struct/underestimatedcount.json index dfe382e..c083886 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/underestimatedcount.json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/underestimatedcount.json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"Collection.underestimatedCount"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"major":0,"minor":3,"patch":0},"kind":"symbol","metadata":{"extendedModule":"Swift","fragments":[{"kind":"keyword","text":"var"},{"kind":"text","text":" "},{"text":"underestimatedCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"title":"underestimatedCount","externalID":"s:SlsE19underestimatedCountSivp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"property","roleHeading":"Instance Property","role":"symbol"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"title":"Collection Implementations","abstract":[],"role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","kind":"article","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/underestimatedCount":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount","kind":"symbol","role":"symbol","title":"underestimatedCount","type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","fragments":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"underestimatedCount"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"}]},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]}}} \ No newline at end of file +{"sections":[],"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Collection.underestimatedCount"},{"text":".","type":"text"}],"kind":"symbol","primaryContentSections":[{"declarations":[{"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"text":"underestimatedCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"text":"get","kind":"keyword"},{"text":" }","kind":"text"}],"languages":["swift"]}],"kind":"declarations"}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount"]}],"metadata":{"externalID":"s:SlsE19underestimatedCountSivp::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"fragments":[{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"underestimatedCount","kind":"identifier"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"}],"role":"symbol","extendedModule":"Swift","title":"underestimatedCount","roleHeading":"Instance Property","symbolKind":"property"},"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/underestimatedCount":{"fragments":[{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"text":"underestimatedCount","kind":"identifier"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/underestimatedCount","kind":"symbol","title":"underestimatedCount","type":"topic","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Collection-Implementations":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Collection-Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","type":"topic","title":"Collection Implementations","kind":"article","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:).json b/docs/data/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:).json index 8e7cdd1..8536d6f 100644 --- a/docs/data/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:).json +++ b/docs/data/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:).json @@ -1 +1 @@ -{"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"Sequence.withContiguousStorageIfAvailable(_:)"},{"text":".","type":"text"}],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"text":"<","kind":"text"},{"kind":"genericParameter","text":"R"},{"text":">(","kind":"text"},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"text":"body","kind":"internalParam"},{"kind":"text","text":": ("},{"text":"UnsafeBufferPointer","kind":"typeIdentifier","preciseIdentifier":"s:SR"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"text":"?","kind":"text"}],"languages":["swift"]}]}],"sections":[],"schemaVersion":{"major":0,"minor":3,"patch":0},"metadata":{"title":"withContiguousStorageIfAvailable(_:)","symbolKind":"method","role":"symbol","fragments":[{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">(("},{"text":"UnsafeBufferPointer","preciseIdentifier":"s:SR","kind":"typeIdentifier"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa","text":"Element"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"text":") ","kind":"text"},{"text":"rethrows","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"text":"?","kind":"text"}],"externalID":"s:STsE32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Instance Method"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"type":"topic","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","abstract":[],"role":"collectionGroup","title":"Sequence Implementations","kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"type":"topic","fragments":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"text":"<","kind":"text"},{"text":"R","kind":"genericParameter"},{"text":">((","kind":"text"},{"preciseIdentifier":"s:SR","text":"UnsafeBufferPointer","kind":"typeIdentifier"},{"text":"<","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"preciseIdentifier":"s:ST7ElementQa","text":"Element","kind":"typeIdentifier"},{"text":">) ","kind":"text"},{"kind":"keyword","text":"throws"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":") "},{"text":"rethrows","kind":"keyword"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","abstract":[],"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","kind":"symbol","title":"withContiguousStorageIfAvailable(_:)","role":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"role":"symbol","navigatorTitle":[{"text":"Words","kind":"identifier"}],"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","kind":"symbol","title":"BigUInt.Words","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","fragments":[{"text":"struct","kind":"keyword"},{"kind":"text","text":" "},{"text":"Words","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"metadata":{"extendedModule":"Swift","symbolKind":"method","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"role":"symbol","externalID":"s:STsE32withContiguousStorageIfAvailableyqd__Sgqd__SRy7ElementQzGKXEKlF::SYNTHESIZED::s:6BigInt0A4UIntV5WordsV","title":"withContiguousStorageIfAvailable(_:)","roleHeading":"Instance Method","fragments":[{"kind":"keyword","text":"func"},{"kind":"text","text":" "},{"text":"withContiguousStorageIfAvailable","kind":"identifier"},{"kind":"text","text":"<"},{"text":"R","kind":"genericParameter"},{"text":">((","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:SR","text":"UnsafeBufferPointer"},{"text":"<","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"kind":"text","text":"."},{"kind":"typeIdentifier","text":"Element","preciseIdentifier":"s:ST7ElementQa"},{"kind":"text","text":">) "},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":"?"}]},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Inherited from "},{"code":"Sequence.withContiguousStorageIfAvailable(_:)","type":"codeVoice"},{"type":"text","text":"."}],"variants":[{"paths":["\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"body"},{"kind":"text","text":": ("},{"preciseIdentifier":"s:SR","kind":"typeIdentifier","text":"UnsafeBufferPointer"},{"kind":"text","text":"<"},{"text":"Self","kind":"typeIdentifier"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}],"languages":["swift"]}]}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct":{"kind":"symbol","url":"\/documentation\/bigint\/biguint\/words-swift.struct","type":"topic","role":"symbol","fragments":[{"kind":"keyword","text":"struct"},{"kind":"text","text":" "},{"kind":"identifier","text":"Words"}],"navigatorTitle":[{"kind":"identifier","text":"Words"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct","title":"BigUInt.Words","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/Sequence-Implementations":{"url":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","role":"collectionGroup","type":"topic","abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/Sequence-Implementations","kind":"article"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/Words-swift.struct/withContiguousStorageIfAvailable(_:)":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/Words-swift.struct\/withContiguousStorageIfAvailable(_:)","url":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","abstract":[],"title":"withContiguousStorageIfAvailable(_:)","kind":"symbol","type":"topic","role":"symbol","fragments":[{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"withContiguousStorageIfAvailable"},{"kind":"text","text":"<"},{"kind":"genericParameter","text":"R"},{"kind":"text","text":">(("},{"kind":"typeIdentifier","text":"UnsafeBufferPointer","preciseIdentifier":"s:SR"},{"kind":"text","text":"<"},{"kind":"typeIdentifier","text":"Self"},{"text":".","kind":"text"},{"text":"Element","kind":"typeIdentifier","preciseIdentifier":"s:ST7ElementQa"},{"text":">) ","kind":"text"},{"text":"throws","kind":"keyword"},{"text":" -> ","kind":"text"},{"text":"R","kind":"typeIdentifier"},{"kind":"text","text":") "},{"kind":"keyword","text":"rethrows"},{"kind":"text","text":" -> "},{"kind":"typeIdentifier","text":"R"},{"kind":"text","text":"?"}]},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/zero.json b/docs/data/documentation/bigint/biguint/zero.json index efbfeff..242a6b5 100644 --- a/docs/data/documentation/bigint/biguint/zero.json +++ b/docs/data/documentation/bigint/biguint/zero.json @@ -1 +1 @@ -{"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"metadata":{"title":"zero","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"Self","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"text":".","type":"text"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]},"role":"symbol","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"extendedModule":"Swift","externalID":"s:s18AdditiveArithmeticPss27ExpressibleByIntegerLiteralRzrlE4zeroxvpZ::SYNTHESIZED::s:6BigInt0A4UIntV","roleHeading":"Type Property","symbolKind":"property","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"Self"}]},"kind":"symbol","abstract":[{"text":"Inherited from ","type":"text"},{"type":"codeVoice","code":"AdditiveArithmetic.zero"},{"type":"text","text":"."}],"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"},{"text":" { ","kind":"text"},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/zero"]}],"sections":[],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/zero":{"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"code":"Self","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}]},"type":"topic","kind":"symbol","abstract":[],"title":"zero","url":"\/documentation\/bigint\/biguint\/zero","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}],"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","title":"AdditiveArithmetic Implementations","abstract":[],"role":"collectionGroup","type":"topic","kind":"article"}}} \ No newline at end of file +{"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations"]]},"abstract":[{"type":"text","text":"Inherited from "},{"type":"codeVoice","code":"AdditiveArithmetic.zero"},{"type":"text","text":"."}],"metadata":{"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"Self"},{"text":" conforms to ","type":"text"},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"symbolKind":"property","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"zero","roleHeading":"Type Property","extendedModule":"Swift","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"var","kind":"keyword"},{"kind":"text","text":" "},{"kind":"identifier","text":"zero"},{"kind":"text","text":": "},{"text":"Self","kind":"typeIdentifier"}],"externalID":"s:s18AdditiveArithmeticPss27ExpressibleByIntegerLiteralRzrlE4zeroxvpZ::SYNTHESIZED::s:6BigInt0A4UIntV","role":"symbol"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"var","kind":"keyword"},{"text":" ","kind":"text"},{"text":"zero","kind":"identifier"},{"text":": ","kind":"text"},{"text":"Self","kind":"typeIdentifier"},{"kind":"text","text":" { "},{"kind":"keyword","text":"get"},{"kind":"text","text":" }"}]}],"kind":"declarations"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/zero"]}],"kind":"symbol","schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/BigUInt/AdditiveArithmetic-Implementations":{"kind":"article","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/AdditiveArithmetic-Implementations","url":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","role":"collectionGroup","title":"AdditiveArithmetic Implementations","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt/zero":{"abstract":[],"type":"topic","conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"type":"codeVoice","code":"Self"},{"type":"text","text":" conforms to "},{"code":"ExpressibleByIntegerLiteral","type":"codeVoice"},{"text":".","type":"text"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/zero","title":"zero","kind":"symbol","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"var"},{"text":" ","kind":"text"},{"kind":"identifier","text":"zero"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Self"}],"url":"\/documentation\/bigint\/biguint\/zero","role":"symbol"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/biguint/~(_:).json b/docs/data/documentation/bigint/biguint/~(_:).json index 5febe07..4b2de1a 100644 --- a/docs/data/documentation/bigint/biguint/~(_:).json +++ b/docs/data/documentation/bigint/biguint/~(_:).json @@ -1 +1 @@ -{"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"}]}]},{"content":[{"level":2,"type":"heading","anchor":"discussion","text":"Discussion"},{"type":"aside","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(a.count)"}]}],"style":"note"}],"kind":"content"}],"schemaVersion":{"patch":0,"minor":3,"major":0},"kind":"symbol","abstract":[{"type":"text","text":"Return the ones’ complement of "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"sections":[],"metadata":{"modules":[{"name":"BigInt"}],"externalID":"s:6BigInt0A4UIntV1topyA2CFZ","extendedModule":"BigInt","symbolKind":"op","roleHeading":"Operator","role":"symbol","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"kind":"text","text":" "},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":") -> ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"title":"~(_:)"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/~(_:)"]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"identifier":"doc:\/\/BigInt\/documentation\/BigInt","title":"BigInt","role":"collection","type":"topic","url":"\/documentation\/bigint","kind":"symbol"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/BigUInt/~(_:)":{"abstract":[{"text":"Return the ones’ complement of ","type":"text"},{"code":"a","type":"codeVoice"},{"text":".","type":"text"}],"type":"topic","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)","fragments":[{"text":"static","kind":"keyword"},{"kind":"text","text":" "},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"text":"~","kind":"identifier"},{"text":" ","kind":"text"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"}],"url":"\/documentation\/bigint\/biguint\/~(_:)","kind":"symbol","title":"~(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"type":"topic","role":"collectionGroup","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","abstract":[],"kind":"article","title":"BinaryInteger Implementations","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations"]]},"kind":"symbol","abstract":[{"type":"text","text":"Return the ones’ complement of "},{"type":"codeVoice","code":"a"},{"text":".","type":"text"}],"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/biguint\/~(_:)"]}],"schemaVersion":{"patch":0,"minor":3,"major":0},"metadata":{"roleHeading":"Operator","extendedModule":"BigInt","fragments":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"keyword","text":"func"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"kind":"text","text":") -> "},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"modules":[{"name":"BigInt"}],"title":"~(_:)","symbolKind":"op","role":"symbol","externalID":"s:6BigInt0A4UIntV1topyA2CFZ"},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)"},"sections":[],"primaryContentSections":[{"declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"static","kind":"keyword"},{"text":" ","kind":"text"},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"text":"~","kind":"identifier"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"kind":"internalParam","text":"a"},{"text":": ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":") -> ","kind":"text"},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}]}],"kind":"declarations"},{"content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"name":"Complexity","style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(a.count)"}]}],"type":"aside"}],"kind":"content"}],"references":{"doc://BigInt/documentation/BigInt/BigUInt/~(_:)":{"type":"topic","fragments":[{"kind":"keyword","text":"static"},{"kind":"text","text":" "},{"text":"func","kind":"keyword"},{"text":" ","kind":"text"},{"kind":"identifier","text":"~"},{"kind":"text","text":" "},{"kind":"text","text":"("},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":") -> ","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"}],"url":"\/documentation\/bigint\/biguint\/~(_:)","abstract":[{"text":"Return the ones’ complement of ","type":"text"},{"type":"codeVoice","code":"a"},{"type":"text","text":"."}],"kind":"symbol","title":"~(_:)","role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/~(_:)"},"doc://BigInt/documentation/BigInt/BigUInt/BinaryInteger-Implementations":{"title":"BinaryInteger Implementations","role":"collectionGroup","url":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt\/BinaryInteger-Implementations","kind":"article","type":"topic","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift.json b/docs/data/documentation/bigint/swift.json index 7e35292..38b6cf9 100644 --- a/docs/data/documentation/bigint/swift.json +++ b/docs/data/documentation/bigint/swift.json @@ -1 +1 @@ -{"topicSections":[{"anchor":"Extended-Protocols","title":"Extended Protocols","generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"]},{"anchor":"Extended-Structures","title":"Extended Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"],"generated":true}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"sections":[],"metadata":{"symbolKind":"extension","modules":[{"name":"BigInt"}],"roleHeading":"Extended Module","role":"collection","title":"Swift","externalID":"s:m:s:e:s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift"]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","title":"BinaryFloatingPoint","role":"symbol","navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/swift\/binaryfloatingpoint","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/Swift/String":{"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}],"abstract":[],"title":"String","kind":"symbol","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"identifier","text":"String"}],"url":"\/documentation\/bigint\/swift\/string","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"}}} \ No newline at end of file +{"schemaVersion":{"patch":0,"minor":3,"major":0},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","interfaceLanguage":"swift"},"topicSections":[{"generated":true,"anchor":"Extended-Protocols","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"],"title":"Extended Protocols"},{"title":"Extended Structures","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"],"anchor":"Extended-Structures","generated":true}],"sections":[],"metadata":{"roleHeading":"Extended Module","role":"collection","symbolKind":"extension","title":"Swift","externalID":"s:m:s:e:s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc","modules":[{"name":"BigInt"}]},"kind":"symbol","variants":[{"paths":["\/documentation\/bigint\/swift"],"traits":[{"interfaceLanguage":"swift"}]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt"]]},"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","kind":"symbol","abstract":[],"title":"BinaryFloatingPoint","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"kind":"identifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","role":"symbol","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint"},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt/Swift/String":{"title":"String","url":"\/documentation\/bigint\/swift\/string","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/binaryfloatingpoint.json b/docs/data/documentation/bigint/swift/binaryfloatingpoint.json index 8da22d8..206490d 100644 --- a/docs/data/documentation/bigint/swift/binaryfloatingpoint.json +++ b/docs/data/documentation/bigint/swift/binaryfloatingpoint.json @@ -1 +1 @@ -{"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"extension","kind":"keyword"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SB","kind":"typeIdentifier","text":"BinaryFloatingPoint"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint"],"traits":[{"interfaceLanguage":"swift"}]}],"kind":"symbol","identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift"]]},"metadata":{"roleHeading":"Extended Protocol","symbolKind":"extension","role":"symbol","externalID":"s:e:s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc","fragments":[{"text":"extension","kind":"keyword"},{"kind":"text","text":" "},{"text":"BinaryFloatingPoint","kind":"identifier","preciseIdentifier":"s:SB"}],"navigatorTitle":[{"kind":"identifier","text":"BinaryFloatingPoint"}],"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"BinaryFloatingPoint","extendedModule":"Swift"},"references":{"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","title":"BinaryFloatingPoint","role":"symbol","navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/swift\/binaryfloatingpoint","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift"]]},"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"externalID":"s:e:s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc","symbolKind":"extension","extendedModule":"Swift","role":"symbol","title":"BinaryFloatingPoint","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BinaryFloatingPoint"}],"roleHeading":"Extended Protocol"},"kind":"symbol","variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint"]}],"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"extension","kind":"keyword"},{"kind":"text","text":" "},{"kind":"typeIdentifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}]}]}],"references":{"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","kind":"symbol","abstract":[],"title":"BinaryFloatingPoint","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"kind":"identifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","role":"symbol","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint"},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3.json b/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3.json index 7703b2c..dae3f19 100644 --- a/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3.json +++ b/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"]]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"text":": ","kind":"text"},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-8c8g3"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"externalID":"s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxAA0A4UIntVcfc","conformance":{"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}],"constraints":[{"code":"RawExponent","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"text":" and ","type":"text"},{"code":"RawSignificand","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}]},"fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"text":")","kind":"text"}],"role":"symbol","symbolKind":"init","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"extendedModule":"Swift","roleHeading":"Initializer","title":"init(_:)"},"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-8c8g3","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint/init(_:)-8c8g3":{"abstract":[],"title":"init(_:)","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-8c8g3","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"constraints":[{"type":"codeVoice","code":"RawExponent"},{"type":"text","text":" conforms to "},{"code":"FixedWidthInteger","type":"codeVoice"},{"text":" and ","type":"text"},{"type":"codeVoice","code":"RawSignificand"},{"type":"text","text":" conforms to "},{"code":"FixedWidthInteger","type":"codeVoice"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-8c8g3"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","abstract":[],"title":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt","type":"topic","role":"collection","kind":"symbol"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","title":"BinaryFloatingPoint","role":"symbol","navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/swift\/binaryfloatingpoint","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-8c8g3"]}],"sections":[],"metadata":{"title":"init(_:)","roleHeading":"Initializer","externalID":"s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxAA0A4UIntVcfc","role":"symbol","extendedModule":"Swift","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"conformance":{"availabilityPrefix":[{"text":"Available when","type":"text"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"constraints":[{"code":"RawExponent","type":"codeVoice"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawSignificand"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}]},"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"symbolKind":"init"},"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"}],"kind":"symbol","identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-8c8g3"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"]]},"schemaVersion":{"patch":0,"major":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint/init(_:)-8c8g3":{"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}],"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-8c8g3","role":"symbol","type":"topic","abstract":[],"title":"init(_:)","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-8c8g3","conformance":{"constraints":[{"type":"codeVoice","code":"RawExponent"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"text":" and ","type":"text"},{"code":"RawSignificand","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}],"conformancePrefix":[{"type":"text","text":"Conforms when"}],"availabilityPrefix":[{"text":"Available when","type":"text"}]}},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","kind":"symbol","abstract":[],"title":"BinaryFloatingPoint","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"kind":"identifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","role":"symbol","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint"},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd.json b/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd.json index 8e1464f..87b8be8 100644 --- a/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd.json +++ b/docs/data/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"]]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"kind":"text","text":")"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"}],"kind":"symbol","schemaVersion":{"major":0,"minor":3,"patch":0},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-jyfd"]}],"metadata":{"extendedModule":"Swift","roleHeading":"Initializer","role":"symbol","externalID":"s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc","symbolKind":"init","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"title":"init(_:)","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"conformance":{"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"RawExponent"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawSignificand"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}]}},"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-jyfd","interfaceLanguage":"swift"},"references":{"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","title":"BinaryFloatingPoint","role":"symbol","navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"kind":"symbol","abstract":[],"url":"\/documentation\/bigint\/swift\/binaryfloatingpoint","fragments":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SB","text":"BinaryFloatingPoint","kind":"identifier"}]},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint/init(_:)-jyfd":{"fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"type":"topic","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-jyfd","title":"init(_:)","conformance":{"constraints":[{"type":"codeVoice","code":"RawExponent"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":" and "},{"code":"RawSignificand","type":"codeVoice"},{"type":"text","text":" conforms to "},{"code":"FixedWidthInteger","type":"codeVoice"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"text":"Conforms when","type":"text"}]},"kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-jyfd","abstract":[],"role":"symbol"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"}}} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":3},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint"]]},"variants":[{"paths":["\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-jyfd"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-jyfd","interfaceLanguage":"swift"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"init"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":")","kind":"text"}],"languages":["swift"],"platforms":["macOS"]}]}],"kind":"symbol","metadata":{"externalID":"s:SB6BigInts17FixedWidthInteger11RawExponentRpzsAB0F11SignificandRpzrlEyxA2AVcfc","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"init(_:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt"},{"text":")","kind":"text"}],"extendedModule":"Swift","symbolKind":"init","conformance":{"constraints":[{"code":"RawExponent","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":" and "},{"type":"codeVoice","code":"RawSignificand"},{"text":" conforms to ","type":"text"},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}],"conformancePrefix":[{"type":"text","text":"Conforms when"}]},"roleHeading":"Initializer"},"references":{"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint/init(_:)-jyfd":{"role":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint\/init(_:)-jyfd","kind":"symbol","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint\/init(_:)-jyfd","type":"topic","abstract":[],"conformance":{"conformancePrefix":[{"text":"Conforms when","type":"text"}],"constraints":[{"type":"codeVoice","code":"RawExponent"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"text":" and ","type":"text"},{"code":"RawSignificand","type":"codeVoice"},{"type":"text","text":" conforms to "},{"type":"codeVoice","code":"FixedWidthInteger"},{"type":"text","text":"."}],"availabilityPrefix":[{"type":"text","text":"Available when"}]},"fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"kind":"text","text":")"}],"title":"init(_:)"},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/BinaryFloatingPoint":{"type":"topic","kind":"symbol","abstract":[],"title":"BinaryFloatingPoint","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"kind":"identifier","preciseIdentifier":"s:SB","text":"BinaryFloatingPoint"}],"navigatorTitle":[{"text":"BinaryFloatingPoint","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/BinaryFloatingPoint","role":"symbol","url":"\/documentation\/bigint\/swift\/binaryfloatingpoint"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/string.json b/docs/data/documentation/bigint/swift/string.json index 27f2ecd..30f2ee9 100644 --- a/docs/data/documentation/bigint/swift/string.json +++ b/docs/data/documentation/bigint/swift/string.json @@ -1 +1 @@ -{"topicSections":[{"title":"Initializers","anchor":"Initializers","identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t"],"generated":true}],"sections":[],"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"extension","kind":"keyword"},{"text":" ","kind":"text"},{"text":"String","kind":"typeIdentifier","preciseIdentifier":"s:SS"}]}]}],"variants":[{"paths":["\/documentation\/bigint\/swift\/string"],"traits":[{"interfaceLanguage":"swift"}]}],"metadata":{"title":"String","symbolKind":"extension","navigatorTitle":[{"text":"String","kind":"identifier"}],"role":"symbol","fragments":[{"text":"extension","kind":"keyword"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}],"externalID":"s:e:s:SS6BigIntEySSAA0A4UIntVcfc","extendedModule":"Swift","roleHeading":"Extended Structure","modules":[{"name":"BigInt","relatedModules":["Swift"]}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","interfaceLanguage":"swift"},"schemaVersion":{"patch":0,"minor":3,"major":0},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift"]]},"references":{"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/Swift/String":{"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}],"abstract":[],"title":"String","kind":"symbol","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"identifier","text":"String"}],"url":"\/documentation\/bigint\/swift\/string","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:)":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/swift\/string\/init(_:)","abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-247k6":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","title":"init(_:radix:uppercase:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Initialize a new string representing an unsigned big integer in the given radix (base)."}]},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-2sg1t":{"type":"topic","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t","abstract":[{"type":"text","text":"Initialize a new string representing a signed big integer in the given radix (base)."}],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"title":"init(_:radix:uppercase:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t"}}} \ No newline at end of file +{"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"},"primaryContentSections":[{"kind":"declarations","declarations":[{"tokens":[{"kind":"keyword","text":"extension"},{"kind":"text","text":" "},{"preciseIdentifier":"s:SS","kind":"typeIdentifier","text":"String"}],"platforms":["macOS"],"languages":["swift"]}]}],"variants":[{"paths":["\/documentation\/bigint\/swift\/string"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift"]]},"topicSections":[{"generated":true,"identifiers":["doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t"],"anchor":"Initializers","title":"Initializers"}],"schemaVersion":{"minor":3,"patch":0,"major":0},"metadata":{"title":"String","roleHeading":"Extended Structure","externalID":"s:e:s:SS6BigIntEySSAA0A4UIntVcfc","extendedModule":"Swift","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","preciseIdentifier":"s:SS","kind":"identifier"}],"modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"extension","role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}]},"kind":"symbol","references":{"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-2sg1t":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t","abstract":[{"text":"Initialize a new string representing a signed big integer in the given radix (base).","type":"text"}],"kind":"symbol","title":"init(_:radix:uppercase:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":")","kind":"text"}],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-247k6":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","abstract":[{"type":"text","text":"Initialize a new string representing an unsigned big integer in the given radix (base)."}],"title":"init(_:radix:uppercase:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:)":{"url":"\/documentation\/bigint\/swift\/string\/init(_:)","title":"init(_:)","role":"symbol","kind":"symbol","abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/Swift/String":{"title":"String","url":"\/documentation\/bigint\/swift\/string","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/string/init(_:).json b/docs/data/documentation/bigint/swift/string/init(_:).json index d03a698..6bd6740 100644 --- a/docs/data/documentation/bigint/swift/string/init(_:).json +++ b/docs/data/documentation/bigint/swift/string/init(_:).json @@ -1 +1 @@ -{"sections":[],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"metadata":{"externalID":"s:SS6BigIntEySSAA0A4UIntVcfc","symbolKind":"init","extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Initializer","title":"init(_:)","role":"symbol","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":")","kind":"text"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"languages":["swift"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"text":"v","kind":"internalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":")","kind":"text"}]}]},{"kind":"content","content":[{"text":"Discussion","type":"heading","anchor":"discussion","level":2},{"type":"aside","name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(v.count^2)"}]}],"style":"note"}]}],"schemaVersion":{"patch":0,"major":0,"minor":3},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","interfaceLanguage":"swift"},"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift\/string\/init(_:)"]}],"kind":"symbol","abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"references":{"doc://BigInt/documentation/BigInt/Swift/String":{"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}],"abstract":[],"title":"String","kind":"symbol","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"identifier","text":"String"}],"url":"\/documentation\/bigint\/swift\/string","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:)":{"type":"topic","kind":"symbol","url":"\/documentation\/bigint\/swift\/string\/init(_:)","abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"title":"init(_:)","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"kind":"text","text":")"}]}}} \ No newline at end of file +{"kind":"symbol","metadata":{"role":"symbol","symbolKind":"init","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt","kind":"typeIdentifier"},{"text":")","kind":"text"}],"extendedModule":"Swift","modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"roleHeading":"Initializer","title":"init(_:)","externalID":"s:SS6BigIntEySSAA0A4UIntVcfc"},"variants":[{"paths":["\/documentation\/bigint\/swift\/string\/init(_:)"],"traits":[{"interfaceLanguage":"swift"}]}],"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","interfaceLanguage":"swift"},"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"sections":[],"primaryContentSections":[{"kind":"declarations","declarations":[{"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"text":"_","kind":"externalParam"},{"text":" ","kind":"text"},{"text":"v","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":")","kind":"text"}],"languages":["swift"]}]},{"kind":"content","content":[{"text":"Discussion","anchor":"discussion","level":2,"type":"heading"},{"content":[{"inlineContent":[{"text":"O(v.count^2)","type":"text"}],"type":"paragraph"}],"type":"aside","style":"note","name":"Complexity"}]}],"abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"schemaVersion":{"major":0,"patch":0,"minor":3},"references":{"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"},"doc://BigInt/documentation/BigInt/Swift/String":{"title":"String","url":"\/documentation\/bigint\/swift\/string","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:)":{"url":"\/documentation\/bigint\/swift\/string\/init(_:)","title":"init(_:)","role":"symbol","kind":"symbol","abstract":[{"text":"Initialize a new string with the base-10 representation of an unsigned big integer.","type":"text"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:)","type":"topic","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":")","kind":"text"}]},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6.json b/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6.json index d268654..0f470e8 100644 --- a/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6.json +++ b/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6.json @@ -1 +1 @@ -{"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","interfaceLanguage":"swift"},"metadata":{"externalID":"s:SS6BigIntE_5radix9uppercaseSSAA0A4UIntV_SiSbtcfc","role":"symbol","symbolKind":"init","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"roleHeading":"Initializer","title":"init(_:radix:uppercase:)","extendedModule":"Swift","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV","text":"BigUInt"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":")"}]},"primaryContentSections":[{"declarations":[{"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"kind":"internalParam","text":"v"},{"text":": ","kind":"text"},{"text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","text":"Int","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"kind":"text","text":": "},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = false)"}],"platforms":["macOS"],"languages":["swift"]}],"kind":"declarations"},{"kind":"content","content":[{"text":"Discussion","level":2,"type":"heading","anchor":"discussion"},{"inlineContent":[{"text":"Numerals greater than 9 are represented as letters from the English alphabet,","type":"text"},{"text":" ","type":"text"},{"text":"starting with ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" if ","type":"text"},{"type":"codeVoice","code":"uppercase"},{"text":" is false or ","type":"text"},{"code":"A","type":"codeVoice"},{"text":" otherwise.","type":"text"}],"type":"paragraph"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Radix > 1 && radix <= 36"}]}],"style":"note","type":"aside","name":"Requires"},{"style":"note","content":[{"inlineContent":[{"text":"O(count) when radix is a power of two; otherwise O(count^2).","type":"text"}],"type":"paragraph"}],"name":"Complexity","type":"aside"}]}],"variants":[{"paths":["\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6"],"traits":[{"interfaceLanguage":"swift"}]}],"sections":[],"schemaVersion":{"minor":3,"patch":0,"major":0},"kind":"symbol","abstract":[{"type":"text","text":"Initialize a new string representing an unsigned big integer in the given radix (base)."}],"references":{"doc://BigInt/documentation/BigInt/Swift/String":{"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}],"abstract":[],"title":"String","kind":"symbol","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"identifier","text":"String"}],"url":"\/documentation\/bigint\/swift\/string","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/BigUInt":{"title":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","kind":"symbol","url":"\/documentation\/bigint\/biguint","type":"topic","role":"symbol","abstract":[{"text":"An arbitary precision unsigned integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"kind":"keyword","text":"struct"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"navigatorTitle":[{"kind":"identifier","text":"BigUInt"}]},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-247k6":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","title":"init(_:radix:uppercase:)","role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6","type":"topic","kind":"symbol","abstract":[{"type":"text","text":"Initialize a new string representing an unsigned big integer in the given radix (base)."}]}}} \ No newline at end of file +{"variants":[{"traits":[{"interfaceLanguage":"swift"}],"paths":["\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6"]}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"sections":[],"abstract":[{"text":"Initialize a new string representing an unsigned big integer in the given radix (base).","type":"text"}],"kind":"symbol","schemaVersion":{"minor":3,"patch":0,"major":0},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6"},"metadata":{"title":"init(_:radix:uppercase:)","roleHeading":"Initializer","extendedModule":"Swift","fragments":[{"kind":"identifier","text":"init"},{"text":"(","kind":"text"},{"text":"BigUInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigInt0A4UIntV"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"kind":"text","text":": "},{"text":"Int","kind":"typeIdentifier","preciseIdentifier":"s:Si"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"role":"symbol","externalID":"s:SS6BigIntE_5radix9uppercaseSSAA0A4UIntV_SiSbtcfc","symbolKind":"init","modules":[{"relatedModules":["Swift"],"name":"BigInt"}]},"primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"kind":"text","text":"("},{"text":"_","kind":"externalParam"},{"kind":"text","text":" "},{"kind":"internalParam","text":"v"},{"kind":"text","text":": "},{"text":"BigUInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Sb","text":"Bool","kind":"typeIdentifier"},{"kind":"text","text":" = false)"}]}]},{"kind":"content","content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"type":"paragraph","inlineContent":[{"text":"Numerals greater than 9 are represented as letters from the English alphabet,","type":"text"},{"text":" ","type":"text"},{"type":"text","text":"starting with "},{"type":"codeVoice","code":"a"},{"type":"text","text":" if "},{"code":"uppercase","type":"codeVoice"},{"type":"text","text":" is false or "},{"type":"codeVoice","code":"A"},{"type":"text","text":" otherwise."}]},{"type":"aside","style":"note","name":"Requires","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Radix > 1 && radix <= 36"}]}]},{"style":"note","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count) when radix is a power of two; otherwise O(count^2)."}]}],"type":"aside","name":"Complexity"}]}],"references":{"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-247k6":{"type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-247k6","abstract":[{"type":"text","text":"Initialize a new string representing an unsigned big integer in the given radix (base)."}],"title":"init(_:radix:uppercase:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigInt0A4UIntV","kind":"typeIdentifier","text":"BigUInt"},{"kind":"text","text":", "},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"kind":"text","text":", "},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"kind":"text","text":")"}],"role":"symbol","kind":"symbol","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6"},"doc://BigInt/documentation/BigInt/Swift/String":{"title":"String","url":"\/documentation\/bigint\/swift\/string","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt/BigUInt":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigUInt","url":"\/documentation\/bigint\/biguint","abstract":[{"type":"text","text":"An arbitary precision unsigned integer type, also known as a “big integer”."}],"navigatorTitle":[{"text":"BigUInt","kind":"identifier"}],"kind":"symbol","title":"BigUInt","fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigUInt","kind":"identifier"}],"role":"symbol","type":"topic"}}} \ No newline at end of file diff --git a/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t.json b/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t.json index cd51a29..2f78494 100644 --- a/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t.json +++ b/docs/data/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t.json @@ -1 +1 @@ -{"primaryContentSections":[{"declarations":[{"languages":["swift"],"tokens":[{"kind":"keyword","text":"init"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"text":" ","kind":"text"},{"kind":"internalParam","text":"value"},{"kind":"text","text":": "},{"preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier","text":"BigInt","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt"},{"text":", ","kind":"text"},{"kind":"externalParam","text":"radix"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"text":" = 10, ","kind":"text"},{"kind":"externalParam","text":"uppercase"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":" = false)","kind":"text"}],"platforms":["macOS"]}],"kind":"declarations"},{"content":[{"level":2,"anchor":"discussion","text":"Discussion","type":"heading"},{"inlineContent":[{"text":"Numerals greater than 9 are represented as letters from the English alphabet,","type":"text"},{"type":"text","text":" "},{"text":"starting with ","type":"text"},{"type":"codeVoice","code":"a"},{"text":" if ","type":"text"},{"type":"codeVoice","code":"uppercase"},{"text":" is false or ","type":"text"},{"code":"A","type":"codeVoice"},{"text":" otherwise.","type":"text"}],"type":"paragraph"},{"type":"aside","style":"note","name":"Requires","content":[{"inlineContent":[{"text":"Radix > 1 && radix <= 36","type":"text"}],"type":"paragraph"}]},{"name":"Complexity","style":"note","type":"aside","content":[{"inlineContent":[{"type":"text","text":"O(count) when radix is a power of two; otherwise O(count^2)."}],"type":"paragraph"}]}],"kind":"content"}],"sections":[],"metadata":{"modules":[{"relatedModules":["Swift"],"name":"BigInt"}],"title":"init(_:radix:uppercase:)","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"text":"BigInt","preciseIdentifier":"s:6BigIntAAV","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","text":"Int","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","preciseIdentifier":"s:Sb","kind":"typeIdentifier"},{"text":")","kind":"text"}],"roleHeading":"Initializer","role":"symbol","symbolKind":"init","externalID":"s:SS6BigIntE_5radix9uppercaseSSA2AV_SiSbtcfc","extendedModule":"Swift"},"schemaVersion":{"minor":3,"major":0,"patch":0},"abstract":[{"type":"text","text":"Initialize a new string representing a signed big integer in the given radix (base)."}],"kind":"symbol","hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"identifier":{"interfaceLanguage":"swift","url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t"},"variants":[{"paths":["\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t"],"traits":[{"interfaceLanguage":"swift"}]}],"references":{"doc://BigInt/documentation/BigInt/Swift/String":{"role":"symbol","navigatorTitle":[{"kind":"identifier","text":"String"}],"abstract":[],"title":"String","kind":"symbol","fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"preciseIdentifier":"s:SS","kind":"identifier","text":"String"}],"url":"\/documentation\/bigint\/swift\/string","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"},"doc://BigInt/documentation/BigInt/BigInt":{"navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","abstract":[{"text":"An arbitary precision signed integer type, also known as a “big integer”.","type":"text"}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}],"type":"topic","role":"symbol","url":"\/documentation\/bigint\/bigint","title":"BigInt","kind":"symbol"},"doc://BigInt/documentation/BigInt/Swift":{"abstract":[],"title":"Swift","kind":"symbol","type":"topic","url":"\/documentation\/bigint\/swift","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift"},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-2sg1t":{"type":"topic","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t","abstract":[{"type":"text","text":"Initialize a new string representing a signed big integer in the given radix (base)."}],"role":"symbol","fragments":[{"text":"init","kind":"identifier"},{"kind":"text","text":"("},{"kind":"typeIdentifier","text":"BigInt","preciseIdentifier":"s:6BigIntAAV"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Int","preciseIdentifier":"s:Si","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}],"title":"init(_:radix:uppercase:)","kind":"symbol","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t"},"doc://BigInt/documentation/BigInt":{"url":"\/documentation\/bigint","type":"topic","title":"BigInt","kind":"symbol","abstract":[],"role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"}}} \ No newline at end of file +{"kind":"symbol","primaryContentSections":[{"kind":"declarations","declarations":[{"languages":["swift"],"platforms":["macOS"],"tokens":[{"text":"init","kind":"keyword"},{"text":"(","kind":"text"},{"kind":"externalParam","text":"_"},{"kind":"text","text":" "},{"text":"value","kind":"internalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","text":"BigInt"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"preciseIdentifier":"s:Si","kind":"typeIdentifier","text":"Int"},{"kind":"text","text":" = 10, "},{"text":"uppercase","kind":"externalParam"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"kind":"text","text":" = false)"}]}]},{"content":[{"type":"heading","text":"Discussion","level":2,"anchor":"discussion"},{"inlineContent":[{"type":"text","text":"Numerals greater than 9 are represented as letters from the English alphabet,"},{"text":" ","type":"text"},{"type":"text","text":"starting with "},{"code":"a","type":"codeVoice"},{"type":"text","text":" if "},{"type":"codeVoice","code":"uppercase"},{"type":"text","text":" is false or "},{"type":"codeVoice","code":"A"},{"text":" otherwise.","type":"text"}],"type":"paragraph"},{"content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"Radix > 1 && radix <= 36"}]}],"name":"Requires","type":"aside","style":"note"},{"name":"Complexity","content":[{"type":"paragraph","inlineContent":[{"type":"text","text":"O(count) when radix is a power of two; otherwise O(count^2)."}]}],"type":"aside","style":"note"}],"kind":"content"}],"metadata":{"role":"symbol","modules":[{"name":"BigInt","relatedModules":["Swift"]}],"symbolKind":"init","extendedModule":"Swift","title":"init(_:radix:uppercase:)","roleHeading":"Initializer","externalID":"s:SS6BigIntE_5radix9uppercaseSSA2AV_SiSbtcfc","fragments":[{"kind":"identifier","text":"init"},{"kind":"text","text":"("},{"preciseIdentifier":"s:6BigIntAAV","text":"BigInt","kind":"typeIdentifier"},{"text":", ","kind":"text"},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"text":", ","kind":"text"},{"text":"uppercase","kind":"externalParam"},{"text":": ","kind":"text"},{"text":"Bool","kind":"typeIdentifier","preciseIdentifier":"s:Sb"},{"text":")","kind":"text"}]},"identifier":{"url":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t","interfaceLanguage":"swift"},"variants":[{"paths":["\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t"],"traits":[{"interfaceLanguage":"swift"}]}],"schemaVersion":{"minor":3,"major":0,"patch":0},"sections":[],"abstract":[{"type":"text","text":"Initialize a new string representing a signed big integer in the given radix (base)."}],"hierarchy":{"paths":[["doc:\/\/BigInt\/documentation\/BigInt","doc:\/\/BigInt\/documentation\/BigInt\/Swift","doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String"]]},"references":{"doc://BigInt/documentation/BigInt/Swift/String":{"title":"String","url":"\/documentation\/bigint\/swift\/string","kind":"symbol","type":"topic","navigatorTitle":[{"kind":"identifier","text":"String"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String","role":"symbol","abstract":[],"fragments":[{"kind":"keyword","text":"extension"},{"text":" ","kind":"text"},{"text":"String","kind":"identifier","preciseIdentifier":"s:SS"}]},"doc://BigInt/documentation/BigInt/Swift/String/init(_:radix:uppercase:)-2sg1t":{"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift\/String\/init(_:radix:uppercase:)-2sg1t","abstract":[{"text":"Initialize a new string representing a signed big integer in the given radix (base).","type":"text"}],"kind":"symbol","title":"init(_:radix:uppercase:)","fragments":[{"text":"init","kind":"identifier"},{"text":"(","kind":"text"},{"text":"BigInt","kind":"typeIdentifier","preciseIdentifier":"s:6BigIntAAV"},{"kind":"text","text":", "},{"text":"radix","kind":"externalParam"},{"text":": ","kind":"text"},{"kind":"typeIdentifier","preciseIdentifier":"s:Si","text":"Int"},{"kind":"text","text":", "},{"kind":"externalParam","text":"uppercase"},{"kind":"text","text":": "},{"kind":"typeIdentifier","preciseIdentifier":"s:Sb","text":"Bool"},{"text":")","kind":"text"}],"role":"symbol","type":"topic","url":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t"},"doc://BigInt/documentation/BigInt/Swift":{"title":"Swift","url":"\/documentation\/bigint\/swift","kind":"symbol","type":"topic","identifier":"doc:\/\/BigInt\/documentation\/BigInt\/Swift","role":"collection","abstract":[]},"doc://BigInt/documentation/BigInt":{"abstract":[],"title":"BigInt","type":"topic","kind":"symbol","url":"\/documentation\/bigint","role":"collection","identifier":"doc:\/\/BigInt\/documentation\/BigInt"},"doc://BigInt/documentation/BigInt/BigInt":{"title":"BigInt","kind":"symbol","url":"\/documentation\/bigint\/bigint","type":"topic","navigatorTitle":[{"text":"BigInt","kind":"identifier"}],"identifier":"doc:\/\/BigInt\/documentation\/BigInt\/BigInt","role":"symbol","abstract":[{"type":"text","text":"An arbitary precision signed integer type, also known as a “big integer”."}],"fragments":[{"text":"struct","kind":"keyword"},{"text":" ","kind":"text"},{"text":"BigInt","kind":"identifier"}]}}} \ No newline at end of file diff --git a/docs/documentation/bigint/bigint/!=(_:_:)-3bni3/index.html b/docs/documentation/bigint/bigint/!=(_:_:)-3bni3/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/!=(_:_:)-3bni3/index.html +++ b/docs/documentation/bigint/bigint/!=(_:_:)-3bni3/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/!=(_:_:)-9tuvb/index.html b/docs/documentation/bigint/bigint/!=(_:_:)-9tuvb/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/!=(_:_:)-9tuvb/index.html +++ b/docs/documentation/bigint/bigint/!=(_:_:)-9tuvb/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/!=(_:_:)-9xzsv/index.html b/docs/documentation/bigint/bigint/!=(_:_:)-9xzsv/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/!=(_:_:)-9xzsv/index.html +++ b/docs/documentation/bigint/bigint/!=(_:_:)-9xzsv/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&(_:_:)-5b5sk/index.html b/docs/documentation/bigint/bigint/&(_:_:)-5b5sk/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&(_:_:)-5b5sk/index.html +++ b/docs/documentation/bigint/bigint/&(_:_:)-5b5sk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&(_:_:)-iwcn/index.html b/docs/documentation/bigint/bigint/&(_:_:)-iwcn/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&(_:_:)-iwcn/index.html +++ b/docs/documentation/bigint/bigint/&(_:_:)-iwcn/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&=(_:_:)/index.html b/docs/documentation/bigint/bigint/&=(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&=(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/&=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&__(_:_:)-9eday/index.html b/docs/documentation/bigint/bigint/&__(_:_:)-9eday/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&__(_:_:)-9eday/index.html +++ b/docs/documentation/bigint/bigint/&__(_:_:)-9eday/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&__(_:_:)-9v4op/index.html b/docs/documentation/bigint/bigint/&__(_:_:)-9v4op/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&__(_:_:)-9v4op/index.html +++ b/docs/documentation/bigint/bigint/&__(_:_:)-9v4op/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&__=(_:_:)-1zawr/index.html b/docs/documentation/bigint/bigint/&__=(_:_:)-1zawr/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&__=(_:_:)-1zawr/index.html +++ b/docs/documentation/bigint/bigint/&__=(_:_:)-1zawr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/&__=(_:_:)-ys3/index.html b/docs/documentation/bigint/bigint/&__=(_:_:)-ys3/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/&__=(_:_:)-ys3/index.html +++ b/docs/documentation/bigint/bigint/&__=(_:_:)-ys3/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/'...(_:)-5iv7x/index.html b/docs/documentation/bigint/bigint/'...(_:)-5iv7x/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/'...(_:)-5iv7x/index.html +++ b/docs/documentation/bigint/bigint/'...(_:)-5iv7x/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/'...(_:)-8y2pm/index.html b/docs/documentation/bigint/bigint/'...(_:)-8y2pm/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/'...(_:)-8y2pm/index.html +++ b/docs/documentation/bigint/bigint/'...(_:)-8y2pm/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/'...(_:_:)/index.html b/docs/documentation/bigint/bigint/'...(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/'...(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/'...(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/'.._(_:)/index.html b/docs/documentation/bigint/bigint/'.._(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/'.._(_:)/index.html +++ b/docs/documentation/bigint/bigint/'.._(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/'.._(_:_:)/index.html b/docs/documentation/bigint/bigint/'.._(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/'.._(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/'.._(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/*(_:_:)/index.html b/docs/documentation/bigint/bigint/*(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/*(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/*(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/*=(_:_:)/index.html b/docs/documentation/bigint/bigint/*=(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/*=(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/*=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/+(_:)/index.html b/docs/documentation/bigint/bigint/+(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/+(_:)/index.html +++ b/docs/documentation/bigint/bigint/+(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/+(_:_:)/index.html b/docs/documentation/bigint/bigint/+(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/+(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/+(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/+=(_:_:)-3y6od/index.html b/docs/documentation/bigint/bigint/+=(_:_:)-3y6od/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/+=(_:_:)-3y6od/index.html +++ b/docs/documentation/bigint/bigint/+=(_:_:)-3y6od/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/+=(_:_:)-4p7tb/index.html b/docs/documentation/bigint/bigint/+=(_:_:)-4p7tb/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/+=(_:_:)-4p7tb/index.html +++ b/docs/documentation/bigint/bigint/+=(_:_:)-4p7tb/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/-(_:)/index.html b/docs/documentation/bigint/bigint/-(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/-(_:)/index.html +++ b/docs/documentation/bigint/bigint/-(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/-(_:_:)/index.html b/docs/documentation/bigint/bigint/-(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/-(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/-(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/-=(_:_:)-9oena/index.html b/docs/documentation/bigint/bigint/-=(_:_:)-9oena/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/-=(_:_:)-9oena/index.html +++ b/docs/documentation/bigint/bigint/-=(_:_:)-9oena/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/-=(_:_:)-9ym7c/index.html b/docs/documentation/bigint/bigint/-=(_:_:)-9ym7c/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/-=(_:_:)-9ym7c/index.html +++ b/docs/documentation/bigint/bigint/-=(_:_:)-9ym7c/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/==(_:_:)-4b64d/index.html b/docs/documentation/bigint/bigint/==(_:_:)-4b64d/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/==(_:_:)-4b64d/index.html +++ b/docs/documentation/bigint/bigint/==(_:_:)-4b64d/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/==(_:_:)-58vlr/index.html b/docs/documentation/bigint/bigint/==(_:_:)-58vlr/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/==(_:_:)-58vlr/index.html +++ b/docs/documentation/bigint/bigint/==(_:_:)-58vlr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/==(_:_:)-7e1gm/index.html b/docs/documentation/bigint/bigint/==(_:_:)-7e1gm/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/==(_:_:)-7e1gm/index.html +++ b/docs/documentation/bigint/bigint/==(_:_:)-7e1gm/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-1mrit/index.html b/docs/documentation/bigint/bigint/_(_:_:)-1mrit/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-1mrit/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-1mrit/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-218l1/index.html b/docs/documentation/bigint/bigint/_(_:_:)-218l1/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-218l1/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-218l1/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-3fs3d/index.html b/docs/documentation/bigint/bigint/_(_:_:)-3fs3d/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-3fs3d/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-3fs3d/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-4phsr/index.html b/docs/documentation/bigint/bigint/_(_:_:)-4phsr/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-4phsr/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-4phsr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-5dwi2/index.html b/docs/documentation/bigint/bigint/_(_:_:)-5dwi2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-5dwi2/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-5dwi2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-5ex7h/index.html b/docs/documentation/bigint/bigint/_(_:_:)-5ex7h/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-5ex7h/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-5ex7h/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-7n20y/index.html b/docs/documentation/bigint/bigint/_(_:_:)-7n20y/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-7n20y/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-7n20y/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-893s2/index.html b/docs/documentation/bigint/bigint/_(_:_:)-893s2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-893s2/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-893s2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-8ph02/index.html b/docs/documentation/bigint/bigint/_(_:_:)-8ph02/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-8ph02/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-8ph02/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-931w/index.html b/docs/documentation/bigint/bigint/_(_:_:)-931w/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-931w/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-931w/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-9x9mk/index.html b/docs/documentation/bigint/bigint/_(_:_:)-9x9mk/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-9x9mk/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-9x9mk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_(_:_:)-ji3u/index.html b/docs/documentation/bigint/bigint/_(_:_:)-ji3u/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_(_:_:)-ji3u/index.html +++ b/docs/documentation/bigint/bigint/_(_:_:)-ji3u/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-1pe5q/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-1pe5q/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-1pe5q/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-1pe5q/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-2iz5t/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-2iz5t/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-2iz5t/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-2iz5t/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-2lggr/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-2lggr/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-2lggr/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-2lggr/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-2vuuk/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-2vuuk/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-2vuuk/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-2vuuk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-2xo16/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-2xo16/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-2xo16/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-2xo16/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-60voa/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-60voa/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-60voa/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-60voa/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-6zl59/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-6zl59/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-6zl59/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-6zl59/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-8ftd7/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-8ftd7/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-8ftd7/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-8ftd7/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-baha/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-baha/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-baha/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-baha/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/_=(_:_:)-jxj9/index.html b/docs/documentation/bigint/bigint/_=(_:_:)-jxj9/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/_=(_:_:)-jxj9/index.html +++ b/docs/documentation/bigint/bigint/_=(_:_:)-jxj9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__(_:_:)-2x8fw/index.html b/docs/documentation/bigint/bigint/__(_:_:)-2x8fw/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__(_:_:)-2x8fw/index.html +++ b/docs/documentation/bigint/bigint/__(_:_:)-2x8fw/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__(_:_:)-46fpj/index.html b/docs/documentation/bigint/bigint/__(_:_:)-46fpj/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__(_:_:)-46fpj/index.html +++ b/docs/documentation/bigint/bigint/__(_:_:)-46fpj/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__(_:_:)-5frf5/index.html b/docs/documentation/bigint/bigint/__(_:_:)-5frf5/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__(_:_:)-5frf5/index.html +++ b/docs/documentation/bigint/bigint/__(_:_:)-5frf5/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__(_:_:)-5znu7/index.html b/docs/documentation/bigint/bigint/__(_:_:)-5znu7/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__(_:_:)-5znu7/index.html +++ b/docs/documentation/bigint/bigint/__(_:_:)-5znu7/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__=(_:_:)-5hyf9/index.html b/docs/documentation/bigint/bigint/__=(_:_:)-5hyf9/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__=(_:_:)-5hyf9/index.html +++ b/docs/documentation/bigint/bigint/__=(_:_:)-5hyf9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/__=(_:_:)-5mbbx/index.html b/docs/documentation/bigint/bigint/__=(_:_:)-5mbbx/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/__=(_:_:)-5mbbx/index.html +++ b/docs/documentation/bigint/bigint/__=(_:_:)-5mbbx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/additivearithmetic-implementations/index.html b/docs/documentation/bigint/bigint/additivearithmetic-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/additivearithmetic-implementations/index.html +++ b/docs/documentation/bigint/bigint/additivearithmetic-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/advanced(by:)/index.html b/docs/documentation/bigint/bigint/advanced(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/advanced(by:)/index.html +++ b/docs/documentation/bigint/bigint/advanced(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/binaryinteger-implementations/index.html b/docs/documentation/bigint/bigint/binaryinteger-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/binaryinteger-implementations/index.html +++ b/docs/documentation/bigint/bigint/binaryinteger-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/bitwidth/index.html b/docs/documentation/bigint/bigint/bitwidth/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/bitwidth/index.html +++ b/docs/documentation/bigint/bigint/bitwidth/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/comparable-implementations/index.html b/docs/documentation/bigint/bigint/comparable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/comparable-implementations/index.html +++ b/docs/documentation/bigint/bigint/comparable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations/index.html b/docs/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations/index.html +++ b/docs/documentation/bigint/bigint/customplaygrounddisplayconvertible-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/customstringconvertible-implementations/index.html b/docs/documentation/bigint/bigint/customstringconvertible-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/customstringconvertible-implementations/index.html +++ b/docs/documentation/bigint/bigint/customstringconvertible-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/decodable-implementations/index.html b/docs/documentation/bigint/bigint/decodable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/decodable-implementations/index.html +++ b/docs/documentation/bigint/bigint/decodable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/description/index.html b/docs/documentation/bigint/bigint/description/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/description/index.html +++ b/docs/documentation/bigint/bigint/description/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/distance(to:)/index.html b/docs/documentation/bigint/bigint/distance(to:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/distance(to:)/index.html +++ b/docs/documentation/bigint/bigint/distance(to:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/encodable-implementations/index.html b/docs/documentation/bigint/bigint/encodable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/encodable-implementations/index.html +++ b/docs/documentation/bigint/bigint/encodable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/encode(to:)/index.html b/docs/documentation/bigint/bigint/encode(to:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/encode(to:)/index.html +++ b/docs/documentation/bigint/bigint/encode(to:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/equatable-implementations/index.html b/docs/documentation/bigint/bigint/equatable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/equatable-implementations/index.html +++ b/docs/documentation/bigint/bigint/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html b/docs/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html +++ b/docs/documentation/bigint/bigint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/expressiblebyintegerliteral-implementations/index.html b/docs/documentation/bigint/bigint/expressiblebyintegerliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/expressiblebyintegerliteral-implementations/index.html +++ b/docs/documentation/bigint/bigint/expressiblebyintegerliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/expressiblebystringliteral-implementations/index.html b/docs/documentation/bigint/bigint/expressiblebystringliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/expressiblebystringliteral-implementations/index.html +++ b/docs/documentation/bigint/bigint/expressiblebystringliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations/index.html b/docs/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations/index.html +++ b/docs/documentation/bigint/bigint/expressiblebyunicodescalarliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/formatted()/index.html b/docs/documentation/bigint/bigint/formatted()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/formatted()/index.html +++ b/docs/documentation/bigint/bigint/formatted()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/formatted(_:)-5oeld/index.html b/docs/documentation/bigint/bigint/formatted(_:)-5oeld/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/formatted(_:)-5oeld/index.html +++ b/docs/documentation/bigint/bigint/formatted(_:)-5oeld/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/formatted(_:)-mdcv/index.html b/docs/documentation/bigint/bigint/formatted(_:)-mdcv/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/formatted(_:)-mdcv/index.html +++ b/docs/documentation/bigint/bigint/formatted(_:)-mdcv/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/greatestcommondivisor(with:)/index.html b/docs/documentation/bigint/bigint/greatestcommondivisor(with:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/greatestcommondivisor(with:)/index.html +++ b/docs/documentation/bigint/bigint/greatestcommondivisor(with:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/hash(into:)/index.html b/docs/documentation/bigint/bigint/hash(into:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/hash(into:)/index.html +++ b/docs/documentation/bigint/bigint/hash(into:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/hashable-implementations/index.html b/docs/documentation/bigint/bigint/hashable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/hashable-implementations/index.html +++ b/docs/documentation/bigint/bigint/hashable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/index.html b/docs/documentation/bigint/bigint/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/index.html +++ b/docs/documentation/bigint/bigint/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init()-3wjrc/index.html b/docs/documentation/bigint/bigint/init()-3wjrc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init()-3wjrc/index.html +++ b/docs/documentation/bigint/bigint/init()-3wjrc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init()-416p0/index.html b/docs/documentation/bigint/bigint/init()-416p0/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init()-416p0/index.html +++ b/docs/documentation/bigint/bigint/init()-416p0/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:)-2kj01/index.html b/docs/documentation/bigint/bigint/init(_:)-2kj01/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:)-2kj01/index.html +++ b/docs/documentation/bigint/bigint/init(_:)-2kj01/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:)-2xsul/index.html b/docs/documentation/bigint/bigint/init(_:)-2xsul/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:)-2xsul/index.html +++ b/docs/documentation/bigint/bigint/init(_:)-2xsul/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:)-4jpxh/index.html b/docs/documentation/bigint/bigint/init(_:)-4jpxh/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:)-4jpxh/index.html +++ b/docs/documentation/bigint/bigint/init(_:)-4jpxh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:)-7tvup/index.html b/docs/documentation/bigint/bigint/init(_:)-7tvup/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:)-7tvup/index.html +++ b/docs/documentation/bigint/bigint/init(_:)-7tvup/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:)-up9u/index.html b/docs/documentation/bigint/bigint/init(_:)-up9u/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:)-up9u/index.html +++ b/docs/documentation/bigint/bigint/init(_:)-up9u/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:format:lenient:)-17mqt/index.html b/docs/documentation/bigint/bigint/init(_:format:lenient:)-17mqt/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:format:lenient:)-17mqt/index.html +++ b/docs/documentation/bigint/bigint/init(_:format:lenient:)-17mqt/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u/index.html b/docs/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u/index.html +++ b/docs/documentation/bigint/bigint/init(_:format:lenient:)-3wz9u/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:format:lenient:)-76a2j/index.html b/docs/documentation/bigint/bigint/init(_:format:lenient:)-76a2j/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:format:lenient:)-76a2j/index.html +++ b/docs/documentation/bigint/bigint/init(_:format:lenient:)-76a2j/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:radix:)/index.html b/docs/documentation/bigint/bigint/init(_:radix:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:radix:)/index.html +++ b/docs/documentation/bigint/bigint/init(_:radix:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:strategy:)-1tkgl/index.html b/docs/documentation/bigint/bigint/init(_:strategy:)-1tkgl/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:strategy:)-1tkgl/index.html +++ b/docs/documentation/bigint/bigint/init(_:strategy:)-1tkgl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(_:strategy:)-4pcmu/index.html b/docs/documentation/bigint/bigint/init(_:strategy:)-4pcmu/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(_:strategy:)-4pcmu/index.html +++ b/docs/documentation/bigint/bigint/init(_:strategy:)-4pcmu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(clamping:)/index.html b/docs/documentation/bigint/bigint/init(clamping:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(clamping:)/index.html +++ b/docs/documentation/bigint/bigint/init(clamping:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(exactly:)-4cfue/index.html b/docs/documentation/bigint/bigint/init(exactly:)-4cfue/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(exactly:)-4cfue/index.html +++ b/docs/documentation/bigint/bigint/init(exactly:)-4cfue/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(exactly:)-88g91/index.html b/docs/documentation/bigint/bigint/init(exactly:)-88g91/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(exactly:)-88g91/index.html +++ b/docs/documentation/bigint/bigint/init(exactly:)-88g91/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre/index.html b/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre/index.html +++ b/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-4wrre/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe/index.html b/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe/index.html +++ b/docs/documentation/bigint/bigint/init(extendedgraphemeclusterliteral:)-8a7xe/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(from:)/index.html b/docs/documentation/bigint/bigint/init(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(from:)/index.html +++ b/docs/documentation/bigint/bigint/init(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(integerliteral:)/index.html b/docs/documentation/bigint/bigint/init(integerliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(integerliteral:)/index.html +++ b/docs/documentation/bigint/bigint/init(integerliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(sign:magnitude:)/index.html b/docs/documentation/bigint/bigint/init(sign:magnitude:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(sign:magnitude:)/index.html +++ b/docs/documentation/bigint/bigint/init(sign:magnitude:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(stringliteral:)/index.html b/docs/documentation/bigint/bigint/init(stringliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(stringliteral:)/index.html +++ b/docs/documentation/bigint/bigint/init(stringliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(truncatingifneeded:)/index.html b/docs/documentation/bigint/bigint/init(truncatingifneeded:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(truncatingifneeded:)/index.html +++ b/docs/documentation/bigint/bigint/init(truncatingifneeded:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(unicodescalarliteral:)/index.html b/docs/documentation/bigint/bigint/init(unicodescalarliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(unicodescalarliteral:)/index.html +++ b/docs/documentation/bigint/bigint/init(unicodescalarliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/init(words:)/index.html b/docs/documentation/bigint/bigint/init(words:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/init(words:)/index.html +++ b/docs/documentation/bigint/bigint/init(words:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/inverse(_:)/index.html b/docs/documentation/bigint/bigint/inverse(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/inverse(_:)/index.html +++ b/docs/documentation/bigint/bigint/inverse(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/ismultiple(of:)/index.html b/docs/documentation/bigint/bigint/ismultiple(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/ismultiple(of:)/index.html +++ b/docs/documentation/bigint/bigint/ismultiple(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/isprime(rounds:)/index.html b/docs/documentation/bigint/bigint/isprime(rounds:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/isprime(rounds:)/index.html +++ b/docs/documentation/bigint/bigint/isprime(rounds:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/issigned-5fyf2/index.html b/docs/documentation/bigint/bigint/issigned-5fyf2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/issigned-5fyf2/index.html +++ b/docs/documentation/bigint/bigint/issigned-5fyf2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/issigned-86ve9/index.html b/docs/documentation/bigint/bigint/issigned-86ve9/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/issigned-86ve9/index.html +++ b/docs/documentation/bigint/bigint/issigned-86ve9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/isstrongprobableprime(_:)/index.html b/docs/documentation/bigint/bigint/isstrongprobableprime(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/isstrongprobableprime(_:)/index.html +++ b/docs/documentation/bigint/bigint/isstrongprobableprime(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/iszero/index.html b/docs/documentation/bigint/bigint/iszero/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/iszero/index.html +++ b/docs/documentation/bigint/bigint/iszero/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/magnitude-swift.property/index.html b/docs/documentation/bigint/bigint/magnitude-swift.property/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/magnitude-swift.property/index.html +++ b/docs/documentation/bigint/bigint/magnitude-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/magnitude-swift.typealias/index.html b/docs/documentation/bigint/bigint/magnitude-swift.typealias/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/magnitude-swift.typealias/index.html +++ b/docs/documentation/bigint/bigint/magnitude-swift.typealias/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/modulus(_:)/index.html b/docs/documentation/bigint/bigint/modulus(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/modulus(_:)/index.html +++ b/docs/documentation/bigint/bigint/modulus(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/negate()-8cxml/index.html b/docs/documentation/bigint/bigint/negate()-8cxml/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/negate()-8cxml/index.html +++ b/docs/documentation/bigint/bigint/negate()-8cxml/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/negate()-9mlkt/index.html b/docs/documentation/bigint/bigint/negate()-9mlkt/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/negate()-9mlkt/index.html +++ b/docs/documentation/bigint/bigint/negate()-9mlkt/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/numeric-implementations/index.html b/docs/documentation/bigint/bigint/numeric-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/numeric-implementations/index.html +++ b/docs/documentation/bigint/bigint/numeric-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/playgrounddescription/index.html b/docs/documentation/bigint/bigint/playgrounddescription/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/playgrounddescription/index.html +++ b/docs/documentation/bigint/bigint/playgrounddescription/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/power(_:)/index.html b/docs/documentation/bigint/bigint/power(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/power(_:)/index.html +++ b/docs/documentation/bigint/bigint/power(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/power(_:modulus:)/index.html b/docs/documentation/bigint/bigint/power(_:modulus:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/power(_:modulus:)/index.html +++ b/docs/documentation/bigint/bigint/power(_:modulus:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/quotientandremainder(dividingby:)/index.html b/docs/documentation/bigint/bigint/quotientandremainder(dividingby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/quotientandremainder(dividingby:)/index.html +++ b/docs/documentation/bigint/bigint/quotientandremainder(dividingby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/serialize()/index.html b/docs/documentation/bigint/bigint/serialize()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/serialize()/index.html +++ b/docs/documentation/bigint/bigint/serialize()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.enum/!=(_:_:)/index.html b/docs/documentation/bigint/bigint/sign-swift.enum/!=(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.enum/!=(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.enum/!=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.enum/equatable-implementations/index.html b/docs/documentation/bigint/bigint/sign-swift.enum/equatable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.enum/equatable-implementations/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.enum/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.enum/index.html b/docs/documentation/bigint/bigint/sign-swift.enum/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.enum/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.enum/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.enum/minus/index.html b/docs/documentation/bigint/bigint/sign-swift.enum/minus/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.enum/minus/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.enum/minus/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.enum/plus/index.html b/docs/documentation/bigint/bigint/sign-swift.enum/plus/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.enum/plus/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.enum/plus/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/sign-swift.property/index.html b/docs/documentation/bigint/bigint/sign-swift.property/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/sign-swift.property/index.html +++ b/docs/documentation/bigint/bigint/sign-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/signedinteger-implementations/index.html b/docs/documentation/bigint/bigint/signedinteger-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/signedinteger-implementations/index.html +++ b/docs/documentation/bigint/bigint/signedinteger-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/signednumeric-implementations/index.html b/docs/documentation/bigint/bigint/signednumeric-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/signednumeric-implementations/index.html +++ b/docs/documentation/bigint/bigint/signednumeric-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/signum()/index.html b/docs/documentation/bigint/bigint/signum()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/signum()/index.html +++ b/docs/documentation/bigint/bigint/signum()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/squareroot()/index.html b/docs/documentation/bigint/bigint/squareroot()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/squareroot()/index.html +++ b/docs/documentation/bigint/bigint/squareroot()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/stride/index.html b/docs/documentation/bigint/bigint/stride/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/stride/index.html +++ b/docs/documentation/bigint/bigint/stride/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/strideable-implementations/index.html b/docs/documentation/bigint/bigint/strideable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/strideable-implementations/index.html +++ b/docs/documentation/bigint/bigint/strideable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/trailingzerobitcount/index.html b/docs/documentation/bigint/bigint/trailingzerobitcount/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/trailingzerobitcount/index.html +++ b/docs/documentation/bigint/bigint/trailingzerobitcount/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/word/index.html b/docs/documentation/bigint/bigint/word/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/word/index.html +++ b/docs/documentation/bigint/bigint/word/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.property/index.html b/docs/documentation/bigint/bigint/words-swift.property/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.property/index.html +++ b/docs/documentation/bigint/bigint/words-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/allsatisfy(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations/index.html b/docs/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/bidirectionalcollection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/collection-implementations/index.html b/docs/documentation/bigint/bigint/words-swift.struct/collection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/collection-implementations/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/collection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/compactmap(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/compactmap(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/compactmap(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/compactmap(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/compare(_:_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/compare(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/compare(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/compare(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/contains(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/contains(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/contains(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/contains(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/contains(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/contains(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/contains(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/contains(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/count(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/count(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/count(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/count(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/count/index.html b/docs/documentation/bigint/bigint/words-swift.struct/count/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/count/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/count/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/difference(from:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/difference(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/difference(from:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/difference(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/difference(from:by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/difference(from:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/difference(from:by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/difference(from:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/drop(while:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/drop(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/drop(while:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/drop(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/dropfirst(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/dropfirst(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/dropfirst(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/dropfirst(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/droplast(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/droplast(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/droplast(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/droplast(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/elementsequal(_:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/endindex/index.html b/docs/documentation/bigint/bigint/words-swift.struct/endindex/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/endindex/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/endindex/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/enumerated()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/enumerated()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/enumerated()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/enumerated()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz/index.html b/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-3zvyz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t/index.html b/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/filter(_:)-4yn8t/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/first(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/first(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/first(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/first(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/first/index.html b/docs/documentation/bigint/bigint/words-swift.struct/first/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/first/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/first/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/firstindex(of:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/firstindex(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/firstindex(of:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/firstindex(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/firstindex(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/firstindex(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/firstindex(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/firstindex(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m/index.html b/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-1yo3m/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns/index.html b/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/firstrange(of:)-6v6ns/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj/index.html b/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-4zycj/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom/index.html b/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/flatmap(_:)-62tom/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/foreach(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/foreach(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/foreach(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/foreach(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/formatted(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/formatted(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/formatted(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/formatted(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/formindex(after:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/formindex(after:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/formindex(after:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/formindex(after:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/formindex(before:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/formindex(before:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/formindex(before:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/formindex(before:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/index(_:offsetby:limitedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/index(of:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/index(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/index(of:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/index(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/index.html b/docs/documentation/bigint/bigint/words-swift.struct/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/indices(of:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/indices(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/indices(of:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/indices(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/indices(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/indices(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/indices(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/indices(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.property/index.html b/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.property/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.property/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias/index.html b/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/indices-swift.typealias/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/isempty/index.html b/docs/documentation/bigint/bigint/words-swift.struct/isempty/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/isempty/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/isempty/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/last(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/last(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/last(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/last(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/last/index.html b/docs/documentation/bigint/bigint/words-swift.struct/last/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/last/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/last/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/lastindex(of:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/lastindex(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/lastindex(of:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/lastindex(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/lastindex(where:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/lastindex(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/lastindex(where:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/lastindex(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/lazy/index.html b/docs/documentation/bigint/bigint/words-swift.struct/lazy/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/lazy/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/lazy/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/makeiterator()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/makeiterator()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/makeiterator()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/makeiterator()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc/index.html b/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-3nxcc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p/index.html b/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/map(_:)-4k48p/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/max()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/max()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/max()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/max()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/max(by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/max(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/max(by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/max(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/min()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/min()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/min()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/min()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/min(by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/min(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/min(by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/min(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/prefix(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/prefix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/prefix(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/prefix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/prefix(through:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/prefix(through:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/prefix(through:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/prefix(through:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/prefix(upto:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/prefix(upto:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/prefix(upto:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/prefix(upto:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/prefix(while:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/prefix(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/prefix(while:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/prefix(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/publisher/index.html b/docs/documentation/bigint/bigint/words-swift.struct/publisher/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/publisher/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/publisher/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations/index.html b/docs/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/randomaccesscollection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/randomelement()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/randomelement()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/randomelement()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/randomelement()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/randomelement(using:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/randomelement(using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/randomelement(using:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/randomelement(using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/ranges(of:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/ranges(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/ranges(of:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/ranges(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/reduce(_:_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/reduce(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/reduce(_:_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/reduce(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/reduce(into:_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/reduce(into:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/reduce(into:_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/reduce(into:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/removingsubranges(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/reversed()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/reversed()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/reversed()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/reversed()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/sequence-implementations/index.html b/docs/documentation/bigint/bigint/words-swift.struct/sequence-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/sequence-implementations/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/sequence-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/shuffled()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/shuffled()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/shuffled()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/shuffled()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/shuffled(using:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/shuffled(using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/shuffled(using:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/shuffled(using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/sorted()/index.html b/docs/documentation/bigint/bigint/words-swift.struct/sorted()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/sorted()/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/sorted()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/sorted(by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/sorted(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/sorted(by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/sorted(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6/index.html b/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-3j7n6/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w/index.html b/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/sorted(using:)-7hf9w/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/startindex/index.html b/docs/documentation/bigint/bigint/words-swift.struct/startindex/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/startindex/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/startindex/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/starts(with:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/starts(with:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/starts(with:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/starts(with:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/starts(with:by:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/starts(with:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/starts(with:by:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/starts(with:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/subscript(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/subscript(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/subscript(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/subscript(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/suffix(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/suffix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/suffix(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/suffix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/suffix(from:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/suffix(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/suffix(from:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/suffix(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/trimmingprefix(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/underestimatedcount/index.html b/docs/documentation/bigint/bigint/words-swift.struct/underestimatedcount/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/underestimatedcount/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/underestimatedcount/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html b/docs/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html +++ b/docs/documentation/bigint/bigint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/zero/index.html b/docs/documentation/bigint/bigint/zero/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/zero/index.html +++ b/docs/documentation/bigint/bigint/zero/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/bigint/~(_:)/index.html b/docs/documentation/bigint/bigint/~(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/bigint/~(_:)/index.html +++ b/docs/documentation/bigint/bigint/~(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/!=(_:_:)-109o9/index.html b/docs/documentation/bigint/biguint/!=(_:_:)-109o9/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/!=(_:_:)-109o9/index.html +++ b/docs/documentation/bigint/biguint/!=(_:_:)-109o9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/!=(_:_:)-7s9hj/index.html b/docs/documentation/bigint/biguint/!=(_:_:)-7s9hj/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/!=(_:_:)-7s9hj/index.html +++ b/docs/documentation/bigint/biguint/!=(_:_:)-7s9hj/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/!=(_:_:)-8cdci/index.html b/docs/documentation/bigint/biguint/!=(_:_:)-8cdci/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/!=(_:_:)-8cdci/index.html +++ b/docs/documentation/bigint/biguint/!=(_:_:)-8cdci/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/&(_:_:)/index.html b/docs/documentation/bigint/biguint/&(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/&(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/&(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/&=(_:_:)/index.html b/docs/documentation/bigint/biguint/&=(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/&=(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/&=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/'...(_:)-993l9/index.html b/docs/documentation/bigint/biguint/'...(_:)-993l9/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/'...(_:)-993l9/index.html +++ b/docs/documentation/bigint/biguint/'...(_:)-993l9/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/'...(_:)-jf8p/index.html b/docs/documentation/bigint/biguint/'...(_:)-jf8p/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/'...(_:)-jf8p/index.html +++ b/docs/documentation/bigint/biguint/'...(_:)-jf8p/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/'...(_:_:)/index.html b/docs/documentation/bigint/biguint/'...(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/'...(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/'...(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/'.._(_:)/index.html b/docs/documentation/bigint/biguint/'.._(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/'.._(_:)/index.html +++ b/docs/documentation/bigint/biguint/'.._(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/'.._(_:_:)/index.html b/docs/documentation/bigint/biguint/'.._(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/'.._(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/'.._(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/*(_:_:)/index.html b/docs/documentation/bigint/biguint/*(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/*(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/*(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/*=(_:_:)/index.html b/docs/documentation/bigint/biguint/*=(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/*=(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/*=(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/+(_:)/index.html b/docs/documentation/bigint/biguint/+(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/+(_:)/index.html +++ b/docs/documentation/bigint/biguint/+(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/+(_:_:)/index.html b/docs/documentation/bigint/biguint/+(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/+(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/+(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/+=(_:_:)-3dht1/index.html b/docs/documentation/bigint/biguint/+=(_:_:)-3dht1/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/+=(_:_:)-3dht1/index.html +++ b/docs/documentation/bigint/biguint/+=(_:_:)-3dht1/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/+=(_:_:)-7h5bi/index.html b/docs/documentation/bigint/biguint/+=(_:_:)-7h5bi/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/+=(_:_:)-7h5bi/index.html +++ b/docs/documentation/bigint/biguint/+=(_:_:)-7h5bi/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/-(_:_:)/index.html b/docs/documentation/bigint/biguint/-(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/-(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/-(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/-=(_:_:)-47mle/index.html b/docs/documentation/bigint/biguint/-=(_:_:)-47mle/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/-=(_:_:)-47mle/index.html +++ b/docs/documentation/bigint/biguint/-=(_:_:)-47mle/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/-=(_:_:)-7gkuo/index.html b/docs/documentation/bigint/biguint/-=(_:_:)-7gkuo/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/-=(_:_:)-7gkuo/index.html +++ b/docs/documentation/bigint/biguint/-=(_:_:)-7gkuo/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/==(_:_:)-1xms/index.html b/docs/documentation/bigint/biguint/==(_:_:)-1xms/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/==(_:_:)-1xms/index.html +++ b/docs/documentation/bigint/biguint/==(_:_:)-1xms/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/==(_:_:)-5amrc/index.html b/docs/documentation/bigint/biguint/==(_:_:)-5amrc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/==(_:_:)-5amrc/index.html +++ b/docs/documentation/bigint/biguint/==(_:_:)-5amrc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/==(_:_:)-892yw/index.html b/docs/documentation/bigint/biguint/==(_:_:)-892yw/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/==(_:_:)-892yw/index.html +++ b/docs/documentation/bigint/biguint/==(_:_:)-892yw/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-4zjdt/index.html b/docs/documentation/bigint/biguint/_(_:_:)-4zjdt/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-4zjdt/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-4zjdt/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-55fb1/index.html b/docs/documentation/bigint/biguint/_(_:_:)-55fb1/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-55fb1/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-55fb1/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-5fu7s/index.html b/docs/documentation/bigint/biguint/_(_:_:)-5fu7s/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-5fu7s/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-5fu7s/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-5zsxd/index.html b/docs/documentation/bigint/biguint/_(_:_:)-5zsxd/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-5zsxd/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-5zsxd/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-757ft/index.html b/docs/documentation/bigint/biguint/_(_:_:)-757ft/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-757ft/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-757ft/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-7d6ky/index.html b/docs/documentation/bigint/biguint/_(_:_:)-7d6ky/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-7d6ky/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-7d6ky/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-939wz/index.html b/docs/documentation/bigint/biguint/_(_:_:)-939wz/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-939wz/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-939wz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-971ls/index.html b/docs/documentation/bigint/biguint/_(_:_:)-971ls/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-971ls/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-971ls/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-kd14/index.html b/docs/documentation/bigint/biguint/_(_:_:)-kd14/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-kd14/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-kd14/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_(_:_:)-lmtg/index.html b/docs/documentation/bigint/biguint/_(_:_:)-lmtg/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_(_:_:)-lmtg/index.html +++ b/docs/documentation/bigint/biguint/_(_:_:)-lmtg/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-4r1a2/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-4r1a2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-4r1a2/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-4r1a2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-5b48p/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-5b48p/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-5b48p/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-5b48p/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-62ah6/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-62ah6/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-62ah6/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-62ah6/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-6nrw3/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-6nrw3/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-6nrw3/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-6nrw3/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-6qcc6/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-6qcc6/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-6qcc6/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-6qcc6/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-71fgh/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-71fgh/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-71fgh/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-71fgh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-7e6lu/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-7e6lu/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-7e6lu/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-7e6lu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-81srf/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-81srf/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-81srf/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-81srf/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-8pmgc/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-8pmgc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-8pmgc/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-8pmgc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/_=(_:_:)-9gc8b/index.html b/docs/documentation/bigint/biguint/_=(_:_:)-9gc8b/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/_=(_:_:)-9gc8b/index.html +++ b/docs/documentation/bigint/biguint/_=(_:_:)-9gc8b/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__(_:_:)-2vptt/index.html b/docs/documentation/bigint/biguint/__(_:_:)-2vptt/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__(_:_:)-2vptt/index.html +++ b/docs/documentation/bigint/biguint/__(_:_:)-2vptt/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__(_:_:)-5r67m/index.html b/docs/documentation/bigint/biguint/__(_:_:)-5r67m/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__(_:_:)-5r67m/index.html +++ b/docs/documentation/bigint/biguint/__(_:_:)-5r67m/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__(_:_:)-75rdx/index.html b/docs/documentation/bigint/biguint/__(_:_:)-75rdx/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__(_:_:)-75rdx/index.html +++ b/docs/documentation/bigint/biguint/__(_:_:)-75rdx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__(_:_:)-924qx/index.html b/docs/documentation/bigint/biguint/__(_:_:)-924qx/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__(_:_:)-924qx/index.html +++ b/docs/documentation/bigint/biguint/__(_:_:)-924qx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__=(_:_:)-75dbc/index.html b/docs/documentation/bigint/biguint/__=(_:_:)-75dbc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__=(_:_:)-75dbc/index.html +++ b/docs/documentation/bigint/biguint/__=(_:_:)-75dbc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/__=(_:_:)-95qlf/index.html b/docs/documentation/bigint/biguint/__=(_:_:)-95qlf/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/__=(_:_:)-95qlf/index.html +++ b/docs/documentation/bigint/biguint/__=(_:_:)-95qlf/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/additivearithmetic-implementations/index.html b/docs/documentation/bigint/biguint/additivearithmetic-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/additivearithmetic-implementations/index.html +++ b/docs/documentation/bigint/biguint/additivearithmetic-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/advanced(by:)/index.html b/docs/documentation/bigint/biguint/advanced(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/advanced(by:)/index.html +++ b/docs/documentation/bigint/biguint/advanced(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/binaryinteger-implementations/index.html b/docs/documentation/bigint/biguint/binaryinteger-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/binaryinteger-implementations/index.html +++ b/docs/documentation/bigint/biguint/binaryinteger-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/bitwidth/index.html b/docs/documentation/bigint/biguint/bitwidth/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/bitwidth/index.html +++ b/docs/documentation/bigint/biguint/bitwidth/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/comparable-implementations/index.html b/docs/documentation/bigint/biguint/comparable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/comparable-implementations/index.html +++ b/docs/documentation/bigint/biguint/comparable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/compare(_:_:)/index.html b/docs/documentation/bigint/biguint/compare(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/compare(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/compare(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations/index.html b/docs/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations/index.html +++ b/docs/documentation/bigint/biguint/customplaygrounddisplayconvertible-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/customstringconvertible-implementations/index.html b/docs/documentation/bigint/biguint/customstringconvertible-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/customstringconvertible-implementations/index.html +++ b/docs/documentation/bigint/biguint/customstringconvertible-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/decodable-implementations/index.html b/docs/documentation/bigint/biguint/decodable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/decodable-implementations/index.html +++ b/docs/documentation/bigint/biguint/decodable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/decrement(shiftedby:)/index.html b/docs/documentation/bigint/biguint/decrement(shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/decrement(shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/decrement(shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/description/index.html b/docs/documentation/bigint/biguint/description/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/description/index.html +++ b/docs/documentation/bigint/biguint/description/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/directmultiplicationlimit/index.html b/docs/documentation/bigint/biguint/directmultiplicationlimit/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/directmultiplicationlimit/index.html +++ b/docs/documentation/bigint/biguint/directmultiplicationlimit/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/distance(to:)/index.html b/docs/documentation/bigint/biguint/distance(to:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/distance(to:)/index.html +++ b/docs/documentation/bigint/biguint/distance(to:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/encodable-implementations/index.html b/docs/documentation/bigint/biguint/encodable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/encodable-implementations/index.html +++ b/docs/documentation/bigint/biguint/encodable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/encode(to:)/index.html b/docs/documentation/bigint/biguint/encode(to:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/encode(to:)/index.html +++ b/docs/documentation/bigint/biguint/encode(to:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/equatable-implementations/index.html b/docs/documentation/bigint/biguint/equatable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/equatable-implementations/index.html +++ b/docs/documentation/bigint/biguint/equatable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html b/docs/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html +++ b/docs/documentation/bigint/biguint/expressiblebyextendedgraphemeclusterliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/expressiblebyintegerliteral-implementations/index.html b/docs/documentation/bigint/biguint/expressiblebyintegerliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/expressiblebyintegerliteral-implementations/index.html +++ b/docs/documentation/bigint/biguint/expressiblebyintegerliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/expressiblebystringliteral-implementations/index.html b/docs/documentation/bigint/biguint/expressiblebystringliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/expressiblebystringliteral-implementations/index.html +++ b/docs/documentation/bigint/biguint/expressiblebystringliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations/index.html b/docs/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations/index.html +++ b/docs/documentation/bigint/biguint/expressiblebyunicodescalarliteral-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/formatted()/index.html b/docs/documentation/bigint/biguint/formatted()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/formatted()/index.html +++ b/docs/documentation/bigint/biguint/formatted()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/formatted(_:)-2d6da/index.html b/docs/documentation/bigint/biguint/formatted(_:)-2d6da/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/formatted(_:)-2d6da/index.html +++ b/docs/documentation/bigint/biguint/formatted(_:)-2d6da/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/formatted(_:)-9ivms/index.html b/docs/documentation/bigint/biguint/formatted(_:)-9ivms/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/formatted(_:)-9ivms/index.html +++ b/docs/documentation/bigint/biguint/formatted(_:)-9ivms/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/greatestcommondivisor(with:)/index.html b/docs/documentation/bigint/biguint/greatestcommondivisor(with:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/greatestcommondivisor(with:)/index.html +++ b/docs/documentation/bigint/biguint/greatestcommondivisor(with:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/hash(into:)/index.html b/docs/documentation/bigint/biguint/hash(into:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/hash(into:)/index.html +++ b/docs/documentation/bigint/biguint/hash(into:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/hashable-implementations/index.html b/docs/documentation/bigint/biguint/hashable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/hashable-implementations/index.html +++ b/docs/documentation/bigint/biguint/hashable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/index.html b/docs/documentation/bigint/biguint/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/index.html +++ b/docs/documentation/bigint/biguint/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init()-nmq2/index.html b/docs/documentation/bigint/biguint/init()-nmq2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init()-nmq2/index.html +++ b/docs/documentation/bigint/biguint/init()-nmq2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init()-sbkm/index.html b/docs/documentation/bigint/biguint/init()-sbkm/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init()-sbkm/index.html +++ b/docs/documentation/bigint/biguint/init()-sbkm/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:)-33kch/index.html b/docs/documentation/bigint/biguint/init(_:)-33kch/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:)-33kch/index.html +++ b/docs/documentation/bigint/biguint/init(_:)-33kch/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:)-4ohlu/index.html b/docs/documentation/bigint/biguint/init(_:)-4ohlu/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:)-4ohlu/index.html +++ b/docs/documentation/bigint/biguint/init(_:)-4ohlu/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:)-5gw2a/index.html b/docs/documentation/bigint/biguint/init(_:)-5gw2a/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:)-5gw2a/index.html +++ b/docs/documentation/bigint/biguint/init(_:)-5gw2a/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:)-9bhcx/index.html b/docs/documentation/bigint/biguint/init(_:)-9bhcx/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:)-9bhcx/index.html +++ b/docs/documentation/bigint/biguint/init(_:)-9bhcx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf/index.html b/docs/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf/index.html +++ b/docs/documentation/bigint/biguint/init(_:format:lenient:)-5zsmf/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:format:lenient:)-846lz/index.html b/docs/documentation/bigint/biguint/init(_:format:lenient:)-846lz/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:format:lenient:)-846lz/index.html +++ b/docs/documentation/bigint/biguint/init(_:format:lenient:)-846lz/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:format:lenient:)-8wged/index.html b/docs/documentation/bigint/biguint/init(_:format:lenient:)-8wged/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:format:lenient:)-8wged/index.html +++ b/docs/documentation/bigint/biguint/init(_:format:lenient:)-8wged/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:radix:)/index.html b/docs/documentation/bigint/biguint/init(_:radix:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:radix:)/index.html +++ b/docs/documentation/bigint/biguint/init(_:radix:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:strategy:)-3pf4s/index.html b/docs/documentation/bigint/biguint/init(_:strategy:)-3pf4s/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:strategy:)-3pf4s/index.html +++ b/docs/documentation/bigint/biguint/init(_:strategy:)-3pf4s/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(_:strategy:)-on2v/index.html b/docs/documentation/bigint/biguint/init(_:strategy:)-on2v/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(_:strategy:)-on2v/index.html +++ b/docs/documentation/bigint/biguint/init(_:strategy:)-on2v/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(clamping:)/index.html b/docs/documentation/bigint/biguint/init(clamping:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(clamping:)/index.html +++ b/docs/documentation/bigint/biguint/init(clamping:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(exactly:)-3yz6v/index.html b/docs/documentation/bigint/biguint/init(exactly:)-3yz6v/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(exactly:)-3yz6v/index.html +++ b/docs/documentation/bigint/biguint/init(exactly:)-3yz6v/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(exactly:)-8jpdx/index.html b/docs/documentation/bigint/biguint/init(exactly:)-8jpdx/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(exactly:)-8jpdx/index.html +++ b/docs/documentation/bigint/biguint/init(exactly:)-8jpdx/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o/index.html b/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o/index.html +++ b/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-2i1o/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70/index.html b/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70/index.html +++ b/docs/documentation/bigint/biguint/init(extendedgraphemeclusterliteral:)-68n70/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(from:)/index.html b/docs/documentation/bigint/biguint/init(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(from:)/index.html +++ b/docs/documentation/bigint/biguint/init(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(integerliteral:)/index.html b/docs/documentation/bigint/biguint/init(integerliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(integerliteral:)/index.html +++ b/docs/documentation/bigint/biguint/init(integerliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(stringliteral:)/index.html b/docs/documentation/bigint/biguint/init(stringliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(stringliteral:)/index.html +++ b/docs/documentation/bigint/biguint/init(stringliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(truncatingifneeded:)/index.html b/docs/documentation/bigint/biguint/init(truncatingifneeded:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(truncatingifneeded:)/index.html +++ b/docs/documentation/bigint/biguint/init(truncatingifneeded:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(unicodescalarliteral:)/index.html b/docs/documentation/bigint/biguint/init(unicodescalarliteral:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(unicodescalarliteral:)/index.html +++ b/docs/documentation/bigint/biguint/init(unicodescalarliteral:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(words:)-2g41y/index.html b/docs/documentation/bigint/biguint/init(words:)-2g41y/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(words:)-2g41y/index.html +++ b/docs/documentation/bigint/biguint/init(words:)-2g41y/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/init(words:)-33w61/index.html b/docs/documentation/bigint/biguint/init(words:)-33w61/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/init(words:)-33w61/index.html +++ b/docs/documentation/bigint/biguint/init(words:)-33w61/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/inverse(_:)/index.html b/docs/documentation/bigint/biguint/inverse(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/inverse(_:)/index.html +++ b/docs/documentation/bigint/biguint/inverse(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/ismultiple(of:)/index.html b/docs/documentation/bigint/biguint/ismultiple(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/ismultiple(of:)/index.html +++ b/docs/documentation/bigint/biguint/ismultiple(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/isprime(rounds:)/index.html b/docs/documentation/bigint/biguint/isprime(rounds:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/isprime(rounds:)/index.html +++ b/docs/documentation/bigint/biguint/isprime(rounds:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/issigned-7t7ce/index.html b/docs/documentation/bigint/biguint/issigned-7t7ce/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/issigned-7t7ce/index.html +++ b/docs/documentation/bigint/biguint/issigned-7t7ce/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/issigned-996wk/index.html b/docs/documentation/bigint/biguint/issigned-996wk/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/issigned-996wk/index.html +++ b/docs/documentation/bigint/biguint/issigned-996wk/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/isstrongprobableprime(_:)/index.html b/docs/documentation/bigint/biguint/isstrongprobableprime(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/isstrongprobableprime(_:)/index.html +++ b/docs/documentation/bigint/biguint/isstrongprobableprime(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/iszero/index.html b/docs/documentation/bigint/biguint/iszero/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/iszero/index.html +++ b/docs/documentation/bigint/biguint/iszero/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/leadingzerobitcount/index.html b/docs/documentation/bigint/biguint/leadingzerobitcount/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/leadingzerobitcount/index.html +++ b/docs/documentation/bigint/biguint/leadingzerobitcount/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/magnitude/index.html b/docs/documentation/bigint/biguint/magnitude/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/magnitude/index.html +++ b/docs/documentation/bigint/biguint/magnitude/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/multiplied(by:)/index.html b/docs/documentation/bigint/biguint/multiplied(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/multiplied(by:)/index.html +++ b/docs/documentation/bigint/biguint/multiplied(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/multiplied(byword:)/index.html b/docs/documentation/bigint/biguint/multiplied(byword:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/multiplied(byword:)/index.html +++ b/docs/documentation/bigint/biguint/multiplied(byword:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/multiply(byword:)/index.html b/docs/documentation/bigint/biguint/multiply(byword:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/multiply(byword:)/index.html +++ b/docs/documentation/bigint/biguint/multiply(byword:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:)/index.html b/docs/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/multiplyandadd(_:_:shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/numeric-implementations/index.html b/docs/documentation/bigint/biguint/numeric-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/numeric-implementations/index.html +++ b/docs/documentation/bigint/biguint/numeric-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/playgrounddescription/index.html b/docs/documentation/bigint/biguint/playgrounddescription/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/playgrounddescription/index.html +++ b/docs/documentation/bigint/biguint/playgrounddescription/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/power(_:)/index.html b/docs/documentation/bigint/biguint/power(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/power(_:)/index.html +++ b/docs/documentation/bigint/biguint/power(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/power(_:modulus:)/index.html b/docs/documentation/bigint/biguint/power(_:modulus:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/power(_:modulus:)/index.html +++ b/docs/documentation/bigint/biguint/power(_:modulus:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/quotientandremainder(dividingby:)/index.html b/docs/documentation/bigint/biguint/quotientandremainder(dividingby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/quotientandremainder(dividingby:)/index.html +++ b/docs/documentation/bigint/biguint/quotientandremainder(dividingby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(lessthan:)/index.html b/docs/documentation/bigint/biguint/randominteger(lessthan:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(lessthan:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(lessthan:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(lessthan:using:)/index.html b/docs/documentation/bigint/biguint/randominteger(lessthan:using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(lessthan:using:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(lessthan:using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(withexactwidth:)/index.html b/docs/documentation/bigint/biguint/randominteger(withexactwidth:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(withexactwidth:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(withexactwidth:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(withexactwidth:using:)/index.html b/docs/documentation/bigint/biguint/randominteger(withexactwidth:using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(withexactwidth:using:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(withexactwidth:using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:)/index.html b/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:using:)/index.html b/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:using:)/index.html +++ b/docs/documentation/bigint/biguint/randominteger(withmaximumwidth:using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/serialize()/index.html b/docs/documentation/bigint/biguint/serialize()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/serialize()/index.html +++ b/docs/documentation/bigint/biguint/serialize()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/signum()/index.html b/docs/documentation/bigint/biguint/signum()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/signum()/index.html +++ b/docs/documentation/bigint/biguint/signum()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/squareroot()/index.html b/docs/documentation/bigint/biguint/squareroot()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/squareroot()/index.html +++ b/docs/documentation/bigint/biguint/squareroot()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/stride/index.html b/docs/documentation/bigint/biguint/stride/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/stride/index.html +++ b/docs/documentation/bigint/biguint/stride/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/strideable-implementations/index.html b/docs/documentation/bigint/biguint/strideable-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/strideable-implementations/index.html +++ b/docs/documentation/bigint/biguint/strideable-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subscript(bitat:)/index.html b/docs/documentation/bigint/biguint/subscript(bitat:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subscript(bitat:)/index.html +++ b/docs/documentation/bigint/biguint/subscript(bitat:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subtract(_:shiftedby:)/index.html b/docs/documentation/bigint/biguint/subtract(_:shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subtract(_:shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/subtract(_:shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subtracting(_:shiftedby:)/index.html b/docs/documentation/bigint/biguint/subtracting(_:shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subtracting(_:shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/subtracting(_:shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:)/index.html b/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:)/index.html +++ b/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:)/index.html b/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/subtractingreportingoverflow(_:shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:)/index.html b/docs/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:)/index.html +++ b/docs/documentation/bigint/biguint/subtractreportingoverflow(_:shiftedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/trailingzerobitcount/index.html b/docs/documentation/bigint/biguint/trailingzerobitcount/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/trailingzerobitcount/index.html +++ b/docs/documentation/bigint/biguint/trailingzerobitcount/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/unsignedinteger-implementations/index.html b/docs/documentation/bigint/biguint/unsignedinteger-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/unsignedinteger-implementations/index.html +++ b/docs/documentation/bigint/biguint/unsignedinteger-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/word/index.html b/docs/documentation/bigint/biguint/word/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/word/index.html +++ b/docs/documentation/bigint/biguint/word/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.property/index.html b/docs/documentation/bigint/biguint/words-swift.property/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.property/index.html +++ b/docs/documentation/bigint/biguint/words-swift.property/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/allsatisfy(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations/index.html b/docs/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/bidirectionalcollection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/collection-implementations/index.html b/docs/documentation/bigint/biguint/words-swift.struct/collection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/collection-implementations/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/collection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/compactmap(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/compactmap(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/compactmap(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/compactmap(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/compare(_:_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/compare(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/compare(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/compare(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/contains(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/contains(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/contains(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/contains(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/contains(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/contains(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/contains(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/contains(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/count(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/count(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/count(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/count(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/count/index.html b/docs/documentation/bigint/biguint/words-swift.struct/count/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/count/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/count/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/difference(from:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/difference(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/difference(from:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/difference(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/difference(from:by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/difference(from:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/difference(from:by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/difference(from:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/drop(while:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/drop(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/drop(while:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/drop(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/dropfirst(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/dropfirst(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/dropfirst(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/dropfirst(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/droplast(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/droplast(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/droplast(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/droplast(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/elementsequal(_:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/endindex/index.html b/docs/documentation/bigint/biguint/words-swift.struct/endindex/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/endindex/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/endindex/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/enumerated()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/enumerated()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/enumerated()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/enumerated()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc/index.html b/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-1i5xc/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c/index.html b/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/filter(_:)-b54c/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/first(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/first(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/first(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/first(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/first/index.html b/docs/documentation/bigint/biguint/words-swift.struct/first/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/first/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/first/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/firstindex(of:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/firstindex(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/firstindex(of:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/firstindex(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/firstindex(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/firstindex(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/firstindex(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/firstindex(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo/index.html b/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-4avlo/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2/index.html b/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/firstrange(of:)-8gbi2/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h/index.html b/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-5v20h/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh/index.html b/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/flatmap(_:)-6lwxh/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/foreach(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/foreach(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/foreach(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/foreach(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/formatted(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/formatted(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/formatted(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/formatted(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/formindex(_:offsetby:limitedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/formindex(after:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/formindex(after:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/formindex(after:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/formindex(after:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/formindex(before:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/formindex(before:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/formindex(before:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/formindex(before:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/index(_:offsetby:limitedby:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/index(of:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/index(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/index(of:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/index(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/index.html b/docs/documentation/bigint/biguint/words-swift.struct/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/indices(of:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/indices(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/indices(of:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/indices(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/indices(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/indices(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/indices(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/indices(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/isempty/index.html b/docs/documentation/bigint/biguint/words-swift.struct/isempty/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/isempty/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/isempty/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/last(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/last(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/last(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/last(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/last/index.html b/docs/documentation/bigint/biguint/words-swift.struct/last/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/last/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/last/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/lastindex(of:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/lastindex(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/lastindex(of:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/lastindex(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/lastindex(where:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/lastindex(where:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/lastindex(where:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/lastindex(where:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/lazy/index.html b/docs/documentation/bigint/biguint/words-swift.struct/lazy/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/lazy/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/lazy/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/lexicographicallyprecedes(_:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/makeiterator()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/makeiterator()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/makeiterator()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/makeiterator()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5/index.html b/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-1jmt5/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g/index.html b/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/map(_:)-5b6g/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/max()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/max()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/max()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/max()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/max(by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/max(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/max(by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/max(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/min()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/min()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/min()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/min()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/min(by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/min(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/min(by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/min(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/prefix(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/prefix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/prefix(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/prefix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/prefix(through:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/prefix(through:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/prefix(through:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/prefix(through:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/prefix(upto:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/prefix(upto:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/prefix(upto:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/prefix(upto:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/prefix(while:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/prefix(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/prefix(while:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/prefix(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/publisher/index.html b/docs/documentation/bigint/biguint/words-swift.struct/publisher/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/publisher/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/publisher/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations/index.html b/docs/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/randomaccesscollection-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/randomelement()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/randomelement()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/randomelement()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/randomelement()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/randomelement(using:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/randomelement(using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/randomelement(using:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/randomelement(using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/ranges(of:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/ranges(of:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/ranges(of:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/ranges(of:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/reduce(_:_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/reduce(_:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/reduce(_:_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/reduce(_:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/reduce(into:_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/reduce(into:_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/reduce(into:_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/reduce(into:_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/removingsubranges(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/reversed()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/reversed()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/reversed()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/reversed()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/sequence-implementations/index.html b/docs/documentation/bigint/biguint/words-swift.struct/sequence-implementations/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/sequence-implementations/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/sequence-implementations/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/shuffled()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/shuffled()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/shuffled()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/shuffled()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/shuffled(using:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/shuffled(using:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/shuffled(using:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/shuffled(using:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/sorted()/index.html b/docs/documentation/bigint/biguint/words-swift.struct/sorted()/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/sorted()/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/sorted()/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/sorted(by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/sorted(by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/sorted(by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/sorted(by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h/index.html b/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-it6h/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl/index.html b/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/sorted(using:)-qagl/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/split(maxsplits:omittingemptysubsequences:whereseparator:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/split(separator:maxsplits:omittingemptysubsequences:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/startindex/index.html b/docs/documentation/bigint/biguint/words-swift.struct/startindex/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/startindex/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/startindex/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/starts(with:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/starts(with:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/starts(with:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/starts(with:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/starts(with:by:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/starts(with:by:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/starts(with:by:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/starts(with:by:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/subscript(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/subscript(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/subscript(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/subscript(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/suffix(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/suffix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/suffix(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/suffix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/suffix(from:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/suffix(from:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/suffix(from:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/suffix(from:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/trimmingprefix(while:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/underestimatedcount/index.html b/docs/documentation/bigint/biguint/words-swift.struct/underestimatedcount/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/underestimatedcount/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/underestimatedcount/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html b/docs/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html +++ b/docs/documentation/bigint/biguint/words-swift.struct/withcontiguousstorageifavailable(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/zero/index.html b/docs/documentation/bigint/biguint/zero/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/zero/index.html +++ b/docs/documentation/bigint/biguint/zero/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/biguint/~(_:)/index.html b/docs/documentation/bigint/biguint/~(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/biguint/~(_:)/index.html +++ b/docs/documentation/bigint/biguint/~(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/index.html b/docs/documentation/bigint/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/index.html +++ b/docs/documentation/bigint/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/binaryfloatingpoint/index.html b/docs/documentation/bigint/swift/binaryfloatingpoint/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/binaryfloatingpoint/index.html +++ b/docs/documentation/bigint/swift/binaryfloatingpoint/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3/index.html b/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3/index.html +++ b/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-8c8g3/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd/index.html b/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd/index.html +++ b/docs/documentation/bigint/swift/binaryfloatingpoint/init(_:)-jyfd/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/index.html b/docs/documentation/bigint/swift/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/index.html +++ b/docs/documentation/bigint/swift/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/string/index.html b/docs/documentation/bigint/swift/string/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/string/index.html +++ b/docs/documentation/bigint/swift/string/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/string/init(_:)/index.html b/docs/documentation/bigint/swift/string/init(_:)/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/string/init(_:)/index.html +++ b/docs/documentation/bigint/swift/string/init(_:)/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6/index.html b/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6/index.html +++ b/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-247k6/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t/index.html b/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t/index.html index c400fc4..e4a680f 100644 --- a/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t/index.html +++ b/docs/documentation/bigint/swift/string/init(_:radix:uppercase:)-2sg1t/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index c400fc4..e4a680f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1 +1 @@ -Documentation
\ No newline at end of file +Documentation
\ No newline at end of file diff --git a/docs/index/index.json b/docs/index/index.json index f55ed56..ec0fc77 100644 --- a/docs/index/index.json +++ b/docs/index/index.json @@ -1 +1 @@ -{"includedArchiveIdentifiers":["BigInt"],"interfaceLanguages":{"swift":[{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","title":"static func & (inout BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","title":"static func &<< (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","title":"static func &>> (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","title":"static func &>>= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","title":"static func &<<= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","title":"static func ^ (inout BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","title":"static func | (inout BigInt, BigInt) -> BigInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init()-416p0","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","title":"init(BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","title":"init(UnsafeRawBufferPointer)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","title":"init(Data)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:radix:)","title":"init?(S, radix: Int)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","title":"init(sign: BigInt.Sign, magnitude: BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(words:)","title":"init(words: S)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/iszero","title":"var isZero: Bool","type":"property"},{"path":"\/documentation\/bigint\/bigint\/magnitude-swift.property","title":"var magnitude: BigUInt","type":"property"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.property","title":"var sign: BigInt.Sign","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)","title":"func greatestCommonDivisor(with: BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/inverse(_:)","title":"func inverse(BigInt) -> BigInt?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/isprime(rounds:)","title":"func isPrime(rounds: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)","title":"func isStrongProbablePrime(BigInt) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/modulus(_:)","title":"func modulus(BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/power(_:)","title":"func power(Int) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/power(_:modulus:)","title":"func power(BigInt, modulus: BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/serialize()","title":"func serialize() -> Data","type":"method"},{"path":"\/documentation\/bigint\/bigint\/signum()","title":"func signum() -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/squareroot()","title":"func squareRoot() -> BigInt","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias","title":"BigInt.Magnitude","type":"typealias"},{"path":"\/documentation\/bigint\/bigint\/word","title":"BigInt.Word","type":"typealias"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/issigned-5fyf2","title":"static var isSigned: Bool","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","title":"case minus","type":"case"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","title":"case plus","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint\/sign-swift.enum","title":"BigInt.Sign","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/+(_:)","title":"static func + (Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","title":"static func += (inout Self, Self)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","title":"static func -= (inout Self, Self)","type":"op"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/zero","title":"static var zero: Self","type":"property"}],"path":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","title":"AdditiveArithmetic Implementations","type":"symbol"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/count","title":"var count: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","title":"var endIndex: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","title":"var indices: BigInt.Words.Indices","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex","title":"var startIndex: Int","type":"property"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","title":"subscript(Int) -> UInt","type":"subscript"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","title":"BigInt.Words.Indices","type":"typealias"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","title":"var last: Self.Element?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)","title":"func difference(from: C) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","title":"func difference(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","title":"func dropLast(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","title":"func formIndex(before: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","title":"func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","title":"func lastIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","title":"func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","title":"func reversed() -> ReversedCollection","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","title":"func suffix(Int) -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","title":"var first: Self.Element?","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","title":"var isEmpty: Bool","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","title":"var underestimatedCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","title":"func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","title":"func dropFirst(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","title":"func firstIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","title":"func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","title":"func formIndex(inout Self.Index, offsetBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","title":"func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","title":"func formIndex(after: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","title":"func index(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","title":"func indices(of: Self.Element) -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","title":"func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","title":"func makeIterator() -> IndexingIterator","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","title":"func prefix(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","title":"func prefix(through: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","title":"func prefix(upTo: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)","title":"func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","title":"func randomElement() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","title":"func randomElement(using: inout T) -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","title":"func ranges(of: C) -> [Range]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","title":"func removingSubranges(RangeSet) -> DiscontiguousSlice","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","title":"func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","title":"func suffix(from: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","title":"func trimmingPrefix(Prefix) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","title":"func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","title":"Collection Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy","title":"var lazy: LazySequence","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","title":"var publisher: Publishers.Sequence","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","title":"func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","title":"func compactMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)","title":"func compare(Comparator.Compared, Comparator.Compared) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","title":"func contains(Self.Element) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)","title":"func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","title":"func count(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","title":"func elementsEqual(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)","title":"func elementsEqual(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","title":"func enumerated() -> EnumeratedSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","title":"func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","title":"func filter(Predicate) throws -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","title":"func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj","title":"func flatMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom","title":"func flatMap((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","title":"func forEach((Self.Element) throws -> Void) rethrows","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","title":"func lexicographicallyPrecedes(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","title":"func lexicographicallyPrecedes(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","title":"func max() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","title":"func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()","title":"func min() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","title":"func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","title":"func reduce(Result, (Result, Self.Element) throws -> Result) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)","title":"func reduce(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","title":"func shuffled() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","title":"func shuffled(using: inout T) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","title":"func sorted() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","title":"func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","title":"func sorted(using: S) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w","title":"func sorted(using: Comparator) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","title":"func starts(with: PossiblePrefix) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)","title":"func starts(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","title":"func withContiguousStorageIfAvailable((UnsafeBufferPointer) throws -> R) rethrows -> R?","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct","title":"BigInt.Words","type":"struct"},{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv","title":"static func != (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk","title":"static func & (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&=(_:_:)","title":"static func &= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/*(_:_:)","title":"static func * (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/*=(_:_:)","title":"static func *= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+(_:_:)","title":"static func + (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","title":"static func += (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-(_:_:)","title":"static func - (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","title":"static func -= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","title":"static func == (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","title":"static func ^ (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","title":"static func > (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","title":"static func < (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","title":"static func % (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-931w","title":"static func | (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk","title":"static func \/ (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q","title":"static func %= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t","title":"static func >= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","title":"static func |= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","title":"static func \/= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","title":"static func <= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","title":"static func ^= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","title":"static func << (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","title":"static func >> (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","title":"static func >> (BigInt, Other) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","title":"static func << (BigInt, Other) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","title":"static func <<= (inout BigInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx","title":"static func >>= (inout BigInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/~(_:)","title":"static func ~ (BigInt) -> BigInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init()-3wjrc","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-up9u","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","title":"init(String, format: IntegerFormatStyle, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","title":"init(String, format: IntegerFormatStyle.Percent, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","title":"init(String, format: IntegerFormatStyle.Currency, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(clamping:)","title":"init(clamping: T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","title":"init?(exactly: T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","title":"init(truncatingIfNeeded: T)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/bitwidth","title":"var bitWidth: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/trailingzerobitcount","title":"var trailingZeroBitCount: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.property","title":"var words: BigInt.Words","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/formatted()","title":"func formatted() -> String","type":"method"},{"path":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/ismultiple(of:)","title":"func isMultiple(of: Self) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)","title":"func quotientAndRemainder(dividingBy: BigInt) -> (quotient: BigInt, remainder: BigInt)","type":"method"}],"path":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","title":"BinaryInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x","title":"static func ... (Self) -> PartialRangeThrough","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","title":"static func ... (Self) -> PartialRangeFrom","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'...(_:_:)","title":"static func ... (Self, Self) -> ClosedRange","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'.._(_:)","title":"static func ..< (Self) -> PartialRangeUpTo","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'.._(_:_:)","title":"static func ..< (Self, Self) -> Range","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","title":"static func < (BigInt, BigInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y","title":"static func < (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","title":"static func >= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","title":"static func >= (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/playgrounddescription","title":"var playgroundDescription: Any","type":"property"}],"path":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations","title":"CustomPlaygroundDisplayConvertible Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/description","title":"var description: String","type":"property"}],"path":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations","title":"CustomStringConvertible Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(from:)","title":"init(from: any Decoder) throws","type":"init"}],"path":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/encode(to:)","title":"func encode(to: any Encoder) throws","type":"method"}],"path":"\/documentation\/bigint\/bigint\/encodable-implementations","title":"Encodable Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","title":"static func == (BigInt, BigInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","title":"static func == (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre","title":"init(extendedGraphemeClusterLiteral: String)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","title":"init(extendedGraphemeClusterLiteral: Self.StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(integerliteral:)","title":"init(integerLiteral: Int64)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(stringliteral:)","title":"init(stringLiteral: StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations","title":"ExpressibleByStringLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","title":"init(unicodeScalarLiteral: UnicodeScalar)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/bigint\/bigint\/hashable-implementations","title":"Hashable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue","title":"init?(exactly: T)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/numeric-implementations","title":"Numeric Implementations","type":"symbol"},{"children":[{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/issigned-86ve9","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/bigint\/signedinteger-implementations","title":"SignedInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/-(_:)","title":"static func - (Self) -> Self","type":"op"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/negate()-8cxml","title":"func negate()","type":"method"},{"path":"\/documentation\/bigint\/bigint\/negate()-9mlkt","title":"func negate()","type":"method"}],"path":"\/documentation\/bigint\/bigint\/signednumeric-implementations","title":"SignedNumeric Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/advanced(by:)","title":"func advanced(by: BigInt.Stride) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/distance(to:)","title":"func distance(to: BigInt) -> BigInt.Stride","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","type":"typealias"}],"path":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint","title":"BigInt","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init()-sbkm","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-33kch","title":"init(UnsafeRawBufferPointer)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","title":"init(Data)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:radix:)","title":"init?(S, radix: Int)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(words:)-2g41y","title":"init(words: Words)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(words:)-33w61","title":"init(words: [BigUInt.Word])","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/iszero","title":"var isZero: Bool","type":"property"},{"path":"\/documentation\/bigint\/biguint\/leadingzerobitcount","title":"var leadingZeroBitCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","title":"func decrement(shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","title":"func greatestCommonDivisor(with: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/inverse(_:)","title":"func inverse(BigUInt) -> BigUInt?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/isprime(rounds:)","title":"func isPrime(rounds: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","title":"func isStrongProbablePrime(BigUInt) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplied(by:)","title":"func multiplied(by: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplied(byword:)","title":"func multiplied(byWord: BigUInt.Word) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiply(byword:)","title":"func multiply(byWord: BigUInt.Word)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","title":"func multiplyAndAdd(BigUInt, BigUInt.Word, shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/power(_:)","title":"func power(Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/power(_:modulus:)","title":"func power(BigUInt, modulus: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/serialize()","title":"func serialize() -> Data","type":"method"},{"path":"\/documentation\/bigint\/biguint\/squareroot()","title":"func squareRoot() -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","title":"func subtract(BigUInt, shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","title":"func subtractReportingOverflow(BigUInt, shiftedBy: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","title":"func subtracting(BigUInt, shiftedBy: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","title":"func subtractingReportingOverflow(BigUInt) -> (partialValue: BigUInt, overflow: Bool)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","title":"func subtractingReportingOverflow(BigUInt, shiftedBy: Int) -> (partialValue: BigUInt, overflow: Bool)","type":"method"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/subscript(bitat:)","title":"subscript(bitAt _: Int) -> Bool","type":"subscript"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/word","title":"BigUInt.Word","type":"typealias"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","title":"static var directMultiplicationLimit: Int","type":"property"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/compare(_:_:)","title":"static func compare(BigUInt, BigUInt) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","title":"static func randomInteger(lessThan: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","title":"static func randomInteger(lessThan: BigUInt, using: inout RNG) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","title":"static func randomInteger(withExactWidth: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)","title":"static func randomInteger(withExactWidth: Int, using: inout RNG) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","title":"static func randomInteger(withMaximumWidth: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","title":"static func randomInteger(withMaximumWidth: Int, using: inout RNG) -> BigUInt","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/+(_:)","title":"static func + (Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"static func += (inout Self, Self)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","title":"static func -= (inout Self, Self)","type":"op"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/zero","title":"static var zero: Self","type":"property"}],"path":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","title":"AdditiveArithmetic Implementations","type":"symbol"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","title":"var endIndex: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","title":"var startIndex: Int","type":"property"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","title":"subscript(Int) -> BigUInt.Word","type":"subscript"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","title":"var last: Self.Element?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)","title":"func difference(from: C) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","title":"func difference(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","title":"func dropLast(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)","title":"func formIndex(before: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","title":"func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","title":"func lastIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)","title":"func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()","title":"func reversed() -> ReversedCollection","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","title":"func suffix(Int) -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/count","title":"var count: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/first","title":"var first: Self.Element?","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","title":"var isEmpty: Bool","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","title":"var underestimatedCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)","title":"func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","title":"func dropFirst(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","title":"func firstIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","title":"func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)","title":"func formIndex(inout Self.Index, offsetBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","title":"func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","title":"func formIndex(after: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)","title":"func index(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)","title":"func indices(of: Self.Element) -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)","title":"func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()","title":"func makeIterator() -> IndexingIterator","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)","title":"func prefix(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)","title":"func prefix(through: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","title":"func prefix(upTo: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","title":"func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()","title":"func randomElement() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","title":"func randomElement(using: inout T) -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","title":"func ranges(of: C) -> [Range]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)","title":"func removingSubranges(RangeSet) -> DiscontiguousSlice","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","title":"func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","title":"func suffix(from: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)","title":"func trimmingPrefix(Prefix) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","title":"func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","title":"Collection Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy","title":"var lazy: LazySequence","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","title":"var publisher: Publishers.Sequence","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)","title":"func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","title":"func compactMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"func compare(Comparator.Compared, Comparator.Compared) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","title":"func contains(Self.Element) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","title":"func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","title":"func count(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)","title":"func elementsEqual(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","title":"func elementsEqual(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","title":"func enumerated() -> EnumeratedSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc","title":"func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","title":"func filter(Predicate) throws -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","title":"func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","title":"func flatMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","title":"func flatMap((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","title":"func forEach((Self.Element) throws -> Void) rethrows","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","title":"func lexicographicallyPrecedes(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","title":"func lexicographicallyPrecedes(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","title":"func max() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","title":"func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","title":"func min() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","title":"func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","title":"func reduce(Result, (Result, Self.Element) throws -> Result) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","title":"func reduce(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","title":"func shuffled() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","title":"func shuffled(using: inout T) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","title":"func sorted() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","title":"func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","title":"func sorted(using: S) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","title":"func sorted(using: Comparator) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","title":"func starts(with: PossiblePrefix) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)","title":"func starts(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","title":"func withContiguousStorageIfAvailable((UnsafeBufferPointer) throws -> R) rethrows -> R?","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct","title":"BigUInt.Words","type":"struct"},{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj","title":"static func != (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/&(_:_:)","title":"static func & (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/&=(_:_:)","title":"static func &= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/*(_:_:)","title":"static func * (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/*=(_:_:)","title":"static func *= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+(_:_:)","title":"static func + (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","title":"static func += (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-(_:_:)","title":"static func - (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","title":"static func -= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","title":"static func == (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","title":"static func | (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1","title":"static func > (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","title":"static func ^ (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","title":"static func \/ (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","title":"static func < (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg","title":"static func % (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","title":"static func \/= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","title":"static func |= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6","title":"static func %= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","title":"static func <= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu","title":"static func ^= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc","title":"static func >= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","title":"static func << (BigUInt, Other) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m","title":"static func >> (BigUInt, Other) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","title":"static func >> (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","title":"static func << (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","title":"static func >>= (inout BigUInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf","title":"static func <<= (inout BigUInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/~(_:)","title":"static func ~ (BigUInt) -> BigUInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init()-nmq2","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","title":"init(String, format: IntegerFormatStyle, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","title":"init(String, format: IntegerFormatStyle.Percent, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","title":"init(String, format: IntegerFormatStyle.Currency, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(clamping:)","title":"init(clamping: T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","title":"init?(exactly: T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","title":"init(truncatingIfNeeded: T)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/bitwidth","title":"var bitWidth: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/trailingzerobitcount","title":"var trailingZeroBitCount: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.property","title":"var words: BigUInt.Words","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/formatted()","title":"func formatted() -> String","type":"method"},{"path":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/ismultiple(of:)","title":"func isMultiple(of: Self) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)","title":"func quotientAndRemainder(dividingBy: BigUInt) -> (quotient: BigUInt, remainder: BigUInt)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/signum()","title":"func signum() -> BigUInt","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/issigned-7t7ce","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","title":"BinaryInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","title":"static func ... (Self) -> PartialRangeFrom","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","title":"static func ... (Self) -> PartialRangeThrough","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'...(_:_:)","title":"static func ... (Self, Self) -> ClosedRange","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'.._(_:)","title":"static func ..< (Self) -> PartialRangeUpTo","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'.._(_:_:)","title":"static func ..< (Self, Self) -> Range","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","title":"static func < (BigUInt, BigUInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","title":"static func < (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf","title":"static func >= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","title":"static func >= (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/biguint\/comparable-implementations","title":"Comparable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/playgrounddescription","title":"var playgroundDescription: Any","type":"property"}],"path":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations","title":"CustomPlaygroundDisplayConvertible Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/description","title":"var description: String","type":"property"}],"path":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","title":"CustomStringConvertible Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(from:)","title":"init(from: any Decoder) throws","type":"init"}],"path":"\/documentation\/bigint\/biguint\/decodable-implementations","title":"Decodable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/encode(to:)","title":"func encode(to: any Encoder) throws","type":"method"}],"path":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","title":"static func == (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw","title":"static func == (BigUInt, BigUInt) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/biguint\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","title":"init(extendedGraphemeClusterLiteral: Self.StringLiteralType)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70","title":"init(extendedGraphemeClusterLiteral: String)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(integerliteral:)","title":"init(integerLiteral: UInt64)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(stringliteral:)","title":"init(stringLiteral: StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","title":"ExpressibleByStringLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)","title":"init(unicodeScalarLiteral: UnicodeScalar)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/bigint\/biguint\/hashable-implementations","title":"Hashable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","title":"init?(exactly: T)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/advanced(by:)","title":"func advanced(by: BigInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/distance(to:)","title":"func distance(to: BigUInt) -> BigInt","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/stride","title":"BigUInt.Stride","type":"typealias"}],"path":"\/documentation\/bigint\/biguint\/strideable-implementations","title":"Strideable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/magnitude","title":"var magnitude: Self","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/issigned-996wk","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","title":"UnsignedInteger Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/biguint","title":"BigUInt","type":"struct"},{"title":"Extended Modules","type":"groupMarker"},{"children":[{"title":"Extended Protocols","type":"groupMarker"},{"path":"\/documentation\/bigint\/swift\/binaryfloatingpoint","title":"BinaryFloatingPoint","type":"extension"},{"title":"Extended Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:)","title":"init(BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6","title":"init(BigUInt, radix: Int, uppercase: Bool)","type":"init"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t","title":"init(BigInt, radix: Int, uppercase: Bool)","type":"init"}],"path":"\/documentation\/bigint\/swift\/string","title":"String","type":"extension"}],"path":"\/documentation\/bigint\/swift","title":"Swift","type":"extension"}],"path":"\/documentation\/bigint","title":"BigInt","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":2}} \ No newline at end of file +{"includedArchiveIdentifiers":["BigInt"],"interfaceLanguages":{"swift":[{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/&(_:_:)-iwcn","title":"static func & (inout BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__(_:_:)-9eday","title":"static func &<< (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__(_:_:)-9v4op","title":"static func &>> (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__=(_:_:)-1zawr","title":"static func &>>= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&__=(_:_:)-ys3","title":"static func &<<= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-3fs3d","title":"static func ^ (inout BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-ji3u","title":"static func | (inout BigInt, BigInt) -> BigInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init()-416p0","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-2xsul","title":"init(BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-4jpxh","title":"init(UnsafeRawBufferPointer)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-7tvup","title":"init(Data)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:radix:)","title":"init?(S, radix: Int)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(sign:magnitude:)","title":"init(sign: BigInt.Sign, magnitude: BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(words:)","title":"init(words: S)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/iszero","title":"var isZero: Bool","type":"property"},{"path":"\/documentation\/bigint\/bigint\/magnitude-swift.property","title":"var magnitude: BigUInt","type":"property"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.property","title":"var sign: BigInt.Sign","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/greatestcommondivisor(with:)","title":"func greatestCommonDivisor(with: BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/inverse(_:)","title":"func inverse(BigInt) -> BigInt?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/isprime(rounds:)","title":"func isPrime(rounds: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/isstrongprobableprime(_:)","title":"func isStrongProbablePrime(BigInt) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/modulus(_:)","title":"func modulus(BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/power(_:)","title":"func power(Int) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/power(_:modulus:)","title":"func power(BigInt, modulus: BigInt) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/serialize()","title":"func serialize() -> Data","type":"method"},{"path":"\/documentation\/bigint\/bigint\/signum()","title":"func signum() -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/squareroot()","title":"func squareRoot() -> BigInt","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/magnitude-swift.typealias","title":"BigInt.Magnitude","type":"typealias"},{"path":"\/documentation\/bigint\/bigint\/word","title":"BigInt.Word","type":"typealias"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/issigned-5fyf2","title":"static var isSigned: Bool","type":"property"},{"title":"Enumerations","type":"groupMarker"},{"children":[{"title":"Enumeration Cases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/minus","title":"case minus","type":"case"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/plus","title":"case plus","type":"case"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/!=(_:_:)","title":"static func != (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/sign-swift.enum\/equatable-implementations","title":"Equatable Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint\/sign-swift.enum","title":"BigInt.Sign","type":"enum"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/+(_:)","title":"static func + (Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+=(_:_:)-3y6od","title":"static func += (inout Self, Self)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-=(_:_:)-9ym7c","title":"static func -= (inout Self, Self)","type":"op"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/zero","title":"static var zero: Self","type":"property"}],"path":"\/documentation\/bigint\/bigint\/additivearithmetic-implementations","title":"AdditiveArithmetic Implementations","type":"symbol"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/count","title":"var count: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/endindex","title":"var endIndex: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.property","title":"var indices: BigInt.Words.Indices","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/startindex","title":"var startIndex: Int","type":"property"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/subscript(_:)","title":"subscript(Int) -> UInt","type":"subscript"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices-swift.typealias","title":"BigInt.Words.Indices","type":"typealias"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/last","title":"var last: Self.Element?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:)","title":"func difference(from: C) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/difference(from:by:)","title":"func difference(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/droplast(_:)","title":"func dropLast(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-6v6ns","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(before:)","title":"func formIndex(before: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/last(where:)","title":"func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(of:)","title":"func lastIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lastindex(where:)","title":"func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reversed()","title":"func reversed() -> ReversedCollection","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(_:)","title":"func suffix(Int) -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/first","title":"var first: Self.Element?","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/isempty","title":"var isEmpty: Bool","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/underestimatedcount","title":"var underestimatedCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/drop(while:)","title":"func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/dropfirst(_:)","title":"func dropFirst(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(of:)","title":"func firstIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstindex(where:)","title":"func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/firstrange(of:)-1yo3m","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:)","title":"func formIndex(inout Self.Index, offsetBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","title":"func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formindex(after:)","title":"func formIndex(after: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(of:)","title":"func index(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(of:)","title":"func indices(of: Self.Element) -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/indices(where:)","title":"func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/makeiterator()","title":"func makeIterator() -> IndexingIterator","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-3nxcc","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(_:)","title":"func prefix(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(through:)","title":"func prefix(through: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(upto:)","title":"func prefix(upTo: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/prefix(while:)","title":"func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement()","title":"func randomElement() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomelement(using:)","title":"func randomElement(using: inout T) -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/ranges(of:)","title":"func ranges(of: C) -> [Range]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/removingsubranges(_:)","title":"func removingSubranges(RangeSet) -> DiscontiguousSlice","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","title":"func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/suffix(from:)","title":"func suffix(from: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(_:)","title":"func trimmingPrefix(Prefix) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/trimmingprefix(while:)","title":"func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/collection-implementations","title":"Collection Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lazy","title":"var lazy: LazySequence","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/publisher","title":"var publisher: Publishers.Sequence","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/allsatisfy(_:)","title":"func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/compactmap(_:)","title":"func compactMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/compare(_:_:)","title":"func compare(Comparator.Compared, Comparator.Compared) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(_:)","title":"func contains(Self.Element) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/contains(where:)","title":"func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/count(where:)","title":"func count(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:)","title":"func elementsEqual(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/elementsequal(_:by:)","title":"func elementsEqual(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/enumerated()","title":"func enumerated() -> EnumeratedSequence","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-3zvyz","title":"func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/filter(_:)-4yn8t","title":"func filter(Predicate) throws -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/first(where:)","title":"func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-4zycj","title":"func flatMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/flatmap(_:)-62tom","title":"func flatMap((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/foreach(_:)","title":"func forEach((Self.Element) throws -> Void) rethrows","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/formatted(_:)","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:)","title":"func lexicographicallyPrecedes(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","title":"func lexicographicallyPrecedes(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/map(_:)-4k48p","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/max()","title":"func max() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/max(by:)","title":"func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/min()","title":"func min() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/min(by:)","title":"func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(_:_:)","title":"func reduce(Result, (Result, Self.Element) throws -> Result) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/reduce(into:_:)","title":"func reduce(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled()","title":"func shuffled() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/shuffled(using:)","title":"func shuffled(using: inout T) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted()","title":"func sorted() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(by:)","title":"func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-3j7n6","title":"func sorted(using: S) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sorted(using:)-7hf9w","title":"func sorted(using: Comparator) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:)","title":"func starts(with: PossiblePrefix) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/starts(with:by:)","title":"func starts(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","title":"func withContiguousStorageIfAvailable((UnsafeBufferPointer) throws -> R) rethrows -> R?","type":"method"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint\/words-swift.struct","title":"BigInt.Words","type":"struct"},{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-3bni3","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-9xzsv","title":"static func != (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&(_:_:)-5b5sk","title":"static func & (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/&=(_:_:)","title":"static func &= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/*(_:_:)","title":"static func * (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/*=(_:_:)","title":"static func *= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+(_:_:)","title":"static func + (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/+=(_:_:)-4p7tb","title":"static func += (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-(_:_:)","title":"static func - (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/-=(_:_:)-9oena","title":"static func -= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-4b64d","title":"static func == (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-218l1","title":"static func ^ (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-5dwi2","title":"static func > (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-5ex7h","title":"static func < (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-893s2","title":"static func % (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-931w","title":"static func | (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-9x9mk","title":"static func \/ (BigInt, BigInt) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-1pe5q","title":"static func %= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2iz5t","title":"static func >= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2vuuk","title":"static func |= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-8ftd7","title":"static func \/= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-baha","title":"static func <= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-jxj9","title":"static func ^= (inout BigInt, BigInt)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-2x8fw","title":"static func << (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-46fpj","title":"static func >> (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-5frf5","title":"static func >> (BigInt, Other) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__(_:_:)-5znu7","title":"static func << (BigInt, Other) -> BigInt","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__=(_:_:)-5hyf9","title":"static func <<= (inout BigInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/__=(_:_:)-5mbbx","title":"static func >>= (inout BigInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/bigint\/~(_:)","title":"static func ~ (BigInt) -> BigInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init()-3wjrc","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-2kj01","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:)-up9u","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-17mqt","title":"init(String, format: IntegerFormatStyle, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-3wz9u","title":"init(String, format: IntegerFormatStyle.Percent, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:format:lenient:)-76a2j","title":"init(String, format: IntegerFormatStyle.Currency, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:strategy:)-1tkgl","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(_:strategy:)-4pcmu","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(clamping:)","title":"init(clamping: T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(exactly:)-88g91","title":"init?(exactly: T)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(truncatingifneeded:)","title":"init(truncatingIfNeeded: T)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/bitwidth","title":"var bitWidth: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/trailingzerobitcount","title":"var trailingZeroBitCount: Int","type":"property"},{"path":"\/documentation\/bigint\/bigint\/words-swift.property","title":"var words: BigInt.Words","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/formatted()","title":"func formatted() -> String","type":"method"},{"path":"\/documentation\/bigint\/bigint\/formatted(_:)-5oeld","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/formatted(_:)-mdcv","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/bigint\/ismultiple(of:)","title":"func isMultiple(of: Self) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/bigint\/quotientandremainder(dividingby:)","title":"func quotientAndRemainder(dividingBy: BigInt) -> (quotient: BigInt, remainder: BigInt)","type":"method"}],"path":"\/documentation\/bigint\/bigint\/binaryinteger-implementations","title":"BinaryInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/'...(_:)-5iv7x","title":"static func ... (Self) -> PartialRangeThrough","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'...(_:)-8y2pm","title":"static func ... (Self) -> PartialRangeFrom","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'...(_:_:)","title":"static func ... (Self, Self) -> ClosedRange","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'.._(_:)","title":"static func ..< (Self) -> PartialRangeUpTo","type":"op"},{"path":"\/documentation\/bigint\/bigint\/'.._(_:_:)","title":"static func ..< (Self, Self) -> Range","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-1mrit","title":"static func < (BigInt, BigInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-4phsr","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-7n20y","title":"static func < (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_(_:_:)-8ph02","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2lggr","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-2xo16","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-60voa","title":"static func >= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/_=(_:_:)-6zl59","title":"static func >= (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/comparable-implementations","title":"Comparable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/playgrounddescription","title":"var playgroundDescription: Any","type":"property"}],"path":"\/documentation\/bigint\/bigint\/customplaygrounddisplayconvertible-implementations","title":"CustomPlaygroundDisplayConvertible Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/description","title":"var description: String","type":"property"}],"path":"\/documentation\/bigint\/bigint\/customstringconvertible-implementations","title":"CustomStringConvertible Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(from:)","title":"init(from: any Decoder) throws","type":"init"}],"path":"\/documentation\/bigint\/bigint\/decodable-implementations","title":"Decodable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/encode(to:)","title":"func encode(to: any Encoder) throws","type":"method"}],"path":"\/documentation\/bigint\/bigint\/encodable-implementations","title":"Encodable Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/!=(_:_:)-9tuvb","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-58vlr","title":"static func == (BigInt, BigInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/bigint\/==(_:_:)-7e1gm","title":"static func == (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/bigint\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-4wrre","title":"init(extendedGraphemeClusterLiteral: String)","type":"init"},{"path":"\/documentation\/bigint\/bigint\/init(extendedgraphemeclusterliteral:)-8a7xe","title":"init(extendedGraphemeClusterLiteral: Self.StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyextendedgraphemeclusterliteral-implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(integerliteral:)","title":"init(integerLiteral: Int64)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(stringliteral:)","title":"init(stringLiteral: StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebystringliteral-implementations","title":"ExpressibleByStringLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(unicodescalarliteral:)","title":"init(unicodeScalarLiteral: UnicodeScalar)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/expressiblebyunicodescalarliteral-implementations","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/bigint\/bigint\/hashable-implementations","title":"Hashable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/init(exactly:)-4cfue","title":"init?(exactly: T)","type":"init"}],"path":"\/documentation\/bigint\/bigint\/numeric-implementations","title":"Numeric Implementations","type":"symbol"},{"children":[{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/issigned-86ve9","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/bigint\/signedinteger-implementations","title":"SignedInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/-(_:)","title":"static func - (Self) -> Self","type":"op"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/negate()-8cxml","title":"func negate()","type":"method"},{"path":"\/documentation\/bigint\/bigint\/negate()-9mlkt","title":"func negate()","type":"method"}],"path":"\/documentation\/bigint\/bigint\/signednumeric-implementations","title":"SignedNumeric Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/advanced(by:)","title":"func advanced(by: BigInt.Stride) -> BigInt","type":"method"},{"path":"\/documentation\/bigint\/bigint\/distance(to:)","title":"func distance(to: BigInt) -> BigInt.Stride","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/bigint\/stride","title":"BigInt.Stride","type":"typealias"}],"path":"\/documentation\/bigint\/bigint\/strideable-implementations","title":"Strideable Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/bigint","title":"BigInt","type":"struct"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init()-sbkm","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-33kch","title":"init(UnsafeRawBufferPointer)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-4ohlu","title":"init(Data)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:radix:)","title":"init?(S, radix: Int)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(words:)-2g41y","title":"init(words: Words)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(words:)-33w61","title":"init(words: [BigUInt.Word])","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/iszero","title":"var isZero: Bool","type":"property"},{"path":"\/documentation\/bigint\/biguint\/leadingzerobitcount","title":"var leadingZeroBitCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/decrement(shiftedby:)","title":"func decrement(shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/greatestcommondivisor(with:)","title":"func greatestCommonDivisor(with: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/inverse(_:)","title":"func inverse(BigUInt) -> BigUInt?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/isprime(rounds:)","title":"func isPrime(rounds: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/isstrongprobableprime(_:)","title":"func isStrongProbablePrime(BigUInt) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplied(by:)","title":"func multiplied(by: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplied(byword:)","title":"func multiplied(byWord: BigUInt.Word) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiply(byword:)","title":"func multiply(byWord: BigUInt.Word)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/multiplyandadd(_:_:shiftedby:)","title":"func multiplyAndAdd(BigUInt, BigUInt.Word, shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/power(_:)","title":"func power(Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/power(_:modulus:)","title":"func power(BigUInt, modulus: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/serialize()","title":"func serialize() -> Data","type":"method"},{"path":"\/documentation\/bigint\/biguint\/squareroot()","title":"func squareRoot() -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtract(_:shiftedby:)","title":"func subtract(BigUInt, shiftedBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractreportingoverflow(_:shiftedby:)","title":"func subtractReportingOverflow(BigUInt, shiftedBy: Int) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtracting(_:shiftedby:)","title":"func subtracting(BigUInt, shiftedBy: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:)","title":"func subtractingReportingOverflow(BigUInt) -> (partialValue: BigUInt, overflow: Bool)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/subtractingreportingoverflow(_:shiftedby:)","title":"func subtractingReportingOverflow(BigUInt, shiftedBy: Int) -> (partialValue: BigUInt, overflow: Bool)","type":"method"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/subscript(bitat:)","title":"subscript(bitAt _: Int) -> Bool","type":"subscript"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/word","title":"BigUInt.Word","type":"typealias"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/directmultiplicationlimit","title":"static let directMultiplicationLimit: Int","type":"property"},{"title":"Type Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/compare(_:_:)","title":"static func compare(BigUInt, BigUInt) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(lessthan:)","title":"static func randomInteger(lessThan: BigUInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(lessthan:using:)","title":"static func randomInteger(lessThan: BigUInt, using: inout RNG) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:)","title":"static func randomInteger(withExactWidth: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withexactwidth:using:)","title":"static func randomInteger(withExactWidth: Int, using: inout RNG) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:)","title":"static func randomInteger(withMaximumWidth: Int) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/randominteger(withmaximumwidth:using:)","title":"static func randomInteger(withMaximumWidth: Int, using: inout RNG) -> BigUInt","type":"method"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/+(_:)","title":"static func + (Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+=(_:_:)-3dht1","title":"static func += (inout Self, Self)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-=(_:_:)-47mle","title":"static func -= (inout Self, Self)","type":"op"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/zero","title":"static var zero: Self","type":"property"}],"path":"\/documentation\/bigint\/biguint\/additivearithmetic-implementations","title":"AdditiveArithmetic Implementations","type":"symbol"},{"children":[{"title":"Structures","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/endindex","title":"var endIndex: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/startindex","title":"var startIndex: Int","type":"property"},{"title":"Subscripts","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/subscript(_:)","title":"subscript(Int) -> BigUInt.Word","type":"subscript"},{"title":"Default Implementations","type":"groupMarker"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/last","title":"var last: Self.Element?","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:)","title":"func difference(from: C) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/difference(from:by:)","title":"func difference(from: C, by: (C.Element, Self.Element) -> Bool) -> CollectionDifference","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/droplast(_:)","title":"func dropLast(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-4avlo","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(before:)","title":"func formIndex(before: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/last(where:)","title":"func last(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(of:)","title":"func lastIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lastindex(where:)","title":"func lastIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reversed()","title":"func reversed() -> ReversedCollection","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(_:)","title":"func suffix(Int) -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/bidirectionalcollection-implementations","title":"BidirectionalCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/count","title":"var count: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/first","title":"var first: Self.Element?","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/isempty","title":"var isEmpty: Bool","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/underestimatedcount","title":"var underestimatedCount: Int","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/drop(while:)","title":"func drop(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/dropfirst(_:)","title":"func dropFirst(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(of:)","title":"func firstIndex(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstindex(where:)","title":"func firstIndex(where: (Self.Element) throws -> Bool) rethrows -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/firstrange(of:)-8gbi2","title":"func firstRange(of: C) -> Range?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:)","title":"func formIndex(inout Self.Index, offsetBy: Int)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(_:offsetby:limitedby:)","title":"func formIndex(inout Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formindex(after:)","title":"func formIndex(after: inout Self.Index)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(of:)","title":"func index(of: Self.Element) -> Self.Index?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(of:)","title":"func indices(of: Self.Element) -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/indices(where:)","title":"func indices(where: (Self.Element) throws -> Bool) rethrows -> RangeSet","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/makeiterator()","title":"func makeIterator() -> IndexingIterator","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-5b6g","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(_:)","title":"func prefix(Int) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(through:)","title":"func prefix(through: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(upto:)","title":"func prefix(upTo: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/prefix(while:)","title":"func prefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement()","title":"func randomElement() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomelement(using:)","title":"func randomElement(using: inout T) -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/ranges(of:)","title":"func ranges(of: C) -> [Range]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/removingsubranges(_:)","title":"func removingSubranges(RangeSet) -> DiscontiguousSlice","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(maxsplits:omittingemptysubsequences:whereseparator:)","title":"func split(maxSplits: Int, omittingEmptySubsequences: Bool, whereSeparator: (Self.Element) throws -> Bool) rethrows -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/split(separator:maxsplits:omittingemptysubsequences:)","title":"func split(separator: Self.Element, maxSplits: Int, omittingEmptySubsequences: Bool) -> [Self.SubSequence]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/suffix(from:)","title":"func suffix(from: Self.Index) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(_:)","title":"func trimmingPrefix(Prefix) -> Self.SubSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/trimmingprefix(while:)","title":"func trimmingPrefix(while: (Self.Element) throws -> Bool) rethrows -> Self.SubSequence","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/collection-implementations","title":"Collection Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/index(_:offsetby:limitedby:)","title":"func index(Self.Index, offsetBy: Int, limitedBy: Self.Index) -> Self.Index?","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/randomaccesscollection-implementations","title":"RandomAccessCollection Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lazy","title":"var lazy: LazySequence","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/publisher","title":"var publisher: Publishers.Sequence","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/allsatisfy(_:)","title":"func allSatisfy((Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/compactmap(_:)","title":"func compactMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/compare(_:_:)","title":"func compare(Comparator.Compared, Comparator.Compared) -> ComparisonResult","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(_:)","title":"func contains(Self.Element) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/contains(where:)","title":"func contains(where: (Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/count(where:)","title":"func count(where: (Self.Element) throws(E) -> Bool) throws(E) -> Int","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:)","title":"func elementsEqual(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/elementsequal(_:by:)","title":"func elementsEqual(OtherSequence, by: (Self.Element, OtherSequence.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/enumerated()","title":"func enumerated() -> EnumeratedSequence","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-1i5xc","title":"func filter((Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/filter(_:)-b54c","title":"func filter(Predicate) throws -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/first(where:)","title":"func first(where: (Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-5v20h","title":"func flatMap((Self.Element) throws -> ElementOfResult?) rethrows -> [ElementOfResult]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/flatmap(_:)-6lwxh","title":"func flatMap((Self.Element) throws -> SegmentOfResult) rethrows -> [SegmentOfResult.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/foreach(_:)","title":"func forEach((Self.Element) throws -> Void) rethrows","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/formatted(_:)","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:)","title":"func lexicographicallyPrecedes(OtherSequence) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/lexicographicallyprecedes(_:by:)","title":"func lexicographicallyPrecedes(OtherSequence, by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/map(_:)-1jmt5","title":"func map((Self.Element) throws(E) -> T) throws(E) -> [T]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/max()","title":"func max() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/max(by:)","title":"func max(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/min()","title":"func min() -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/min(by:)","title":"func min(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> Self.Element?","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(_:_:)","title":"func reduce(Result, (Result, Self.Element) throws -> Result) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/reduce(into:_:)","title":"func reduce(into: Result, (inout Result, Self.Element) throws -> ()) rethrows -> Result","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled()","title":"func shuffled() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/shuffled(using:)","title":"func shuffled(using: inout T) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted()","title":"func sorted() -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(by:)","title":"func sorted(by: (Self.Element, Self.Element) throws -> Bool) rethrows -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-it6h","title":"func sorted(using: S) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sorted(using:)-qagl","title":"func sorted(using: Comparator) -> [Self.Element]","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:)","title":"func starts(with: PossiblePrefix) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/starts(with:by:)","title":"func starts(with: PossiblePrefix, by: (Self.Element, PossiblePrefix.Element) throws -> Bool) rethrows -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/withcontiguousstorageifavailable(_:)","title":"func withContiguousStorageIfAvailable((UnsafeBufferPointer) throws -> R) rethrows -> R?","type":"method"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct\/sequence-implementations","title":"Sequence Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/biguint\/words-swift.struct","title":"BigUInt.Words","type":"struct"},{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-109o9","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-7s9hj","title":"static func != (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/&(_:_:)","title":"static func & (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/&=(_:_:)","title":"static func &= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/*(_:_:)","title":"static func * (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/*=(_:_:)","title":"static func *= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+(_:_:)","title":"static func + (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/+=(_:_:)-7h5bi","title":"static func += (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-(_:_:)","title":"static func - (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/-=(_:_:)-7gkuo","title":"static func -= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-1xms","title":"static func == (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-4zjdt","title":"static func | (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-55fb1","title":"static func > (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-5zsxd","title":"static func ^ (Self, Self) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-7d6ky","title":"static func \/ (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-939wz","title":"static func < (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-lmtg","title":"static func % (BigUInt, BigUInt) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-4r1a2","title":"static func \/= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-6nrw3","title":"static func |= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-6qcc6","title":"static func %= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-71fgh","title":"static func <= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-7e6lu","title":"static func ^= (inout BigUInt, BigUInt)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-8pmgc","title":"static func >= (Self, Other) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-2vptt","title":"static func << (BigUInt, Other) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-5r67m","title":"static func >> (BigUInt, Other) -> BigUInt","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-75rdx","title":"static func >> (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__(_:_:)-924qx","title":"static func << (Self, RHS) -> Self","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__=(_:_:)-75dbc","title":"static func >>= (inout BigUInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/__=(_:_:)-95qlf","title":"static func <<= (inout BigUInt, Other)","type":"op"},{"path":"\/documentation\/bigint\/biguint\/~(_:)","title":"static func ~ (BigUInt) -> BigUInt","type":"op"},{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init()-nmq2","title":"init()","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-5gw2a","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:)-9bhcx","title":"init(T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-5zsmf","title":"init(String, format: IntegerFormatStyle, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-846lz","title":"init(String, format: IntegerFormatStyle.Percent, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:format:lenient:)-8wged","title":"init(String, format: IntegerFormatStyle.Currency, lenient: Bool) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:strategy:)-3pf4s","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(_:strategy:)-on2v","title":"init(S.ParseInput, strategy: S) throws","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(clamping:)","title":"init(clamping: T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(exactly:)-3yz6v","title":"init?(exactly: T)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(truncatingifneeded:)","title":"init(truncatingIfNeeded: T)","type":"init"},{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/bitwidth","title":"var bitWidth: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/trailingzerobitcount","title":"var trailingZeroBitCount: Int","type":"property"},{"path":"\/documentation\/bigint\/biguint\/words-swift.property","title":"var words: BigUInt.Words","type":"property"},{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/formatted()","title":"func formatted() -> String","type":"method"},{"path":"\/documentation\/bigint\/biguint\/formatted(_:)-2d6da","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/formatted(_:)-9ivms","title":"func formatted(S) -> S.FormatOutput","type":"method"},{"path":"\/documentation\/bigint\/biguint\/ismultiple(of:)","title":"func isMultiple(of: Self) -> Bool","type":"method"},{"path":"\/documentation\/bigint\/biguint\/quotientandremainder(dividingby:)","title":"func quotientAndRemainder(dividingBy: BigUInt) -> (quotient: BigUInt, remainder: BigUInt)","type":"method"},{"path":"\/documentation\/bigint\/biguint\/signum()","title":"func signum() -> BigUInt","type":"method"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/issigned-7t7ce","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/biguint\/binaryinteger-implementations","title":"BinaryInteger Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/'...(_:)-993l9","title":"static func ... (Self) -> PartialRangeFrom","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'...(_:)-jf8p","title":"static func ... (Self) -> PartialRangeThrough","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'...(_:_:)","title":"static func ... (Self, Self) -> ClosedRange","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'.._(_:)","title":"static func ..< (Self) -> PartialRangeUpTo","type":"op"},{"path":"\/documentation\/bigint\/biguint\/'.._(_:_:)","title":"static func ..< (Self, Self) -> Range","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-5fu7s","title":"static func < (BigUInt, BigUInt) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-757ft","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-971ls","title":"static func < (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_(_:_:)-kd14","title":"static func > (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-5b48p","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-62ah6","title":"static func <= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-81srf","title":"static func >= (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/_=(_:_:)-9gc8b","title":"static func >= (Self, Self) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/biguint\/comparable-implementations","title":"Comparable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/playgrounddescription","title":"var playgroundDescription: Any","type":"property"}],"path":"\/documentation\/bigint\/biguint\/customplaygrounddisplayconvertible-implementations","title":"CustomPlaygroundDisplayConvertible Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/description","title":"var description: String","type":"property"}],"path":"\/documentation\/bigint\/biguint\/customstringconvertible-implementations","title":"CustomStringConvertible Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(from:)","title":"init(from: any Decoder) throws","type":"init"}],"path":"\/documentation\/bigint\/biguint\/decodable-implementations","title":"Decodable Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/encode(to:)","title":"func encode(to: any Encoder) throws","type":"method"}],"path":"\/documentation\/bigint\/biguint\/encodable-implementations","title":"Encodable Implementations","type":"symbol"},{"children":[{"title":"Operators","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/!=(_:_:)-8cdci","title":"static func != (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-5amrc","title":"static func == (Self, Self) -> Bool","type":"op"},{"path":"\/documentation\/bigint\/biguint\/==(_:_:)-892yw","title":"static func == (BigUInt, BigUInt) -> Bool","type":"op"}],"path":"\/documentation\/bigint\/biguint\/equatable-implementations","title":"Equatable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-2i1o","title":"init(extendedGraphemeClusterLiteral: Self.StringLiteralType)","type":"init"},{"path":"\/documentation\/bigint\/biguint\/init(extendedgraphemeclusterliteral:)-68n70","title":"init(extendedGraphemeClusterLiteral: String)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyextendedgraphemeclusterliteral-implementations","title":"ExpressibleByExtendedGraphemeClusterLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(integerliteral:)","title":"init(integerLiteral: UInt64)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyintegerliteral-implementations","title":"ExpressibleByIntegerLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(stringliteral:)","title":"init(stringLiteral: StringLiteralType)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebystringliteral-implementations","title":"ExpressibleByStringLiteral Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(unicodescalarliteral:)","title":"init(unicodeScalarLiteral: UnicodeScalar)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/expressiblebyunicodescalarliteral-implementations","title":"ExpressibleByUnicodeScalarLiteral Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/hash(into:)","title":"func hash(into: inout Hasher)","type":"method"}],"path":"\/documentation\/bigint\/biguint\/hashable-implementations","title":"Hashable Implementations","type":"symbol"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/init(exactly:)-8jpdx","title":"init?(exactly: T)","type":"init"}],"path":"\/documentation\/bigint\/biguint\/numeric-implementations","title":"Numeric Implementations","type":"symbol"},{"children":[{"title":"Instance Methods","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/advanced(by:)","title":"func advanced(by: BigInt) -> BigUInt","type":"method"},{"path":"\/documentation\/bigint\/biguint\/distance(to:)","title":"func distance(to: BigUInt) -> BigInt","type":"method"},{"title":"Type Aliases","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/stride","title":"BigUInt.Stride","type":"typealias"}],"path":"\/documentation\/bigint\/biguint\/strideable-implementations","title":"Strideable Implementations","type":"symbol"},{"children":[{"title":"Instance Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/magnitude","title":"var magnitude: Self","type":"property"},{"title":"Type Properties","type":"groupMarker"},{"path":"\/documentation\/bigint\/biguint\/issigned-996wk","title":"static var isSigned: Bool","type":"property"}],"path":"\/documentation\/bigint\/biguint\/unsignedinteger-implementations","title":"UnsignedInteger Implementations","type":"symbol"}],"path":"\/documentation\/bigint\/biguint","title":"BigUInt","type":"struct"},{"title":"Extended Modules","type":"groupMarker"},{"children":[{"title":"Extended Protocols","type":"groupMarker"},{"path":"\/documentation\/bigint\/swift\/binaryfloatingpoint","title":"BinaryFloatingPoint","type":"extension"},{"title":"Extended Structures","type":"groupMarker"},{"children":[{"title":"Initializers","type":"groupMarker"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:)","title":"init(BigUInt)","type":"init"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-247k6","title":"init(BigUInt, radix: Int, uppercase: Bool)","type":"init"},{"path":"\/documentation\/bigint\/swift\/string\/init(_:radix:uppercase:)-2sg1t","title":"init(BigInt, radix: Int, uppercase: Bool)","type":"init"}],"path":"\/documentation\/bigint\/swift\/string","title":"String","type":"extension"}],"path":"\/documentation\/bigint\/swift","title":"Swift","type":"extension"}],"path":"\/documentation\/bigint","title":"BigInt","type":"module"}]},"schemaVersion":{"major":0,"minor":1,"patch":2}} \ No newline at end of file diff --git a/docs/metadata.json b/docs/metadata.json index ae7c5c3..9fce04b 100644 --- a/docs/metadata.json +++ b/docs/metadata.json @@ -1 +1 @@ -{"bundleDisplayName":"BigInt","schemaVersion":{"patch":0,"major":0,"minor":1},"bundleIdentifier":"BigInt"} \ No newline at end of file +{"schemaVersion":{"major":0,"patch":0,"minor":1},"bundleDisplayName":"BigInt","bundleIdentifier":"BigInt"} \ No newline at end of file